Skip to content

Commit a3b3cd9

Browse files
authored
Deprecation of frame.append method from pandas (#180)
1 parent beb864a commit a3b3cd9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

motmetrics/mot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -456,7 +456,7 @@ def merge_event_dataframes(dfs, update_frame_indices=True, update_oids=True, upd
456456
copy['HId'] = copy['HId'].map(lambda x: hid_map[x], na_action='ignore')
457457
infos['hid_map'] = hid_map
458458

459-
r = r.append(copy)
459+
r = pd.concat([r,copy])
460460
mapping_infos.append(infos)
461461

462462
if return_mappings:

0 commit comments

Comments
 (0)