Skip to content

Commit 02eb0d4

Browse files
committed
use concat instead of merge
to avoid pandas-dev/pandas#23733 which persists in pandas-1.0.3
1 parent 06ba629 commit 02eb0d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

api/client/gro_client.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ def add_points_to_df(self, index, data_series, data_points, *args):
104104
if self._data_frame.empty:
105105
self._data_frame = tmp
106106
else:
107-
self._data_frame = self._data_frame.merge(tmp, how='outer')
107+
self._data_frame = pandas.concat([self._data_frame, tmp])
108108

109109
def get_data_points(self, **selections):
110110
"""Get all the data points for a given selection.

0 commit comments

Comments
 (0)