Skip to content

Commit

Permalink
Remove deprecated append method, use concat instead
Browse files Browse the repository at this point in the history
  • Loading branch information
dnerini committed Apr 22, 2023
1 parent 1c90e44 commit 0c5d01e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pysteps/tracking/tdating.py
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ def couple_track(cell_list, max_ID, mintrack):
for t in range(len(cell_list)):
mytime = cell_list[t]
mycell = mytime[mytime.ID == n]
cell_track = cell_track.append(mycell)
cell_track = pd.concat([cell_track, mycell], ignore_index=True)

if len(cell_track) < mintrack:
continue
Expand Down

0 comments on commit 0c5d01e

Please sign in to comment.