Skip to content

Commit

Permalink
Deprecation of frame.append method from pandas (#180)
Browse files Browse the repository at this point in the history
  • Loading branch information
marthateye authored Sep 22, 2023
1 parent beb864a commit a3b3cd9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion motmetrics/mot.py
Original file line number Diff line number Diff line change
Expand Up @@ -456,7 +456,7 @@ def merge_event_dataframes(dfs, update_frame_indices=True, update_oids=True, upd
copy['HId'] = copy['HId'].map(lambda x: hid_map[x], na_action='ignore')
infos['hid_map'] = hid_map

r = r.append(copy)
r = pd.concat([r,copy])
mapping_infos.append(infos)

if return_mappings:
Expand Down

0 comments on commit a3b3cd9

Please sign in to comment.