Skip to content

Commit

Permalink
👽 Filter out GroupBy FutureWarning (#77)
Browse files Browse the repository at this point in the history
  • Loading branch information
ddelange authored Jul 4, 2024
1 parent 42ec7eb commit 2055ee2
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/mapply/mapply.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,12 @@
category=FutureWarning,
)

warnings.filterwarnings(
action="ignore",
message=".*grouper",
category=FutureWarning,
)


def _choose_n_chunks(
shape: tuple[int, ...],
Expand Down

0 comments on commit 2055ee2

Please sign in to comment.