Skip to content

Commit ccd2ef1

Browse files
committed
Fix future warnings from Pandas
Closes #229
1 parent 91a6d6c commit ccd2ef1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pedpy/methods/method_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -805,7 +805,7 @@ def _compute_movememnt_adaptive_border(
805805
df_movement = traj_data.data.copy(deep=True)
806806

807807
frame_infos = df_movement.groupby(by=ID_COL).agg(
808-
frame_min=(FRAME_COL, min), frame_max=(FRAME_COL, max)
808+
frame_min=(FRAME_COL, "min"), frame_max=(FRAME_COL, "max")
809809
)
810810
df_movement = df_movement.merge(frame_infos, on=ID_COL)
811811

0 commit comments

Comments
 (0)