Skip to content

Commit

Permalink
remove deprecated groupby keyword
Browse files Browse the repository at this point in the history
  • Loading branch information
ahalev committed Aug 8, 2024
1 parent e22b7ee commit 38de5f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pymgrid/utils/space/space.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def _transform_builtins(d, normalized=False):

def extract_builtins(d, act_or_obs='act', normalized=False):
try:
d = d.groupby(level=0, axis=0).agg(list).T
d = d.groupby(level=0).agg(list).T
except AttributeError:
pass

Expand Down

0 comments on commit 38de5f0

Please sign in to comment.