Skip to content

Commit

Permalink
Remove deprecation decorator
Browse files Browse the repository at this point in the history
  • Loading branch information
mcrumiller committed Feb 14, 2024
1 parent 38b8f25 commit 8549348
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions py-polars/polars/dataframe/frame.py
Original file line number Diff line number Diff line change
Expand Up @@ -7251,15 +7251,7 @@ def explode(
"""
return self.lazy().explode(columns, *more_columns).collect(_eager=True)

@deprecate_nonkeyword_arguments(
allowed_args=["self"],
message=(
"The order of the parameters of `pivot` will change in the next breaking release."
" The order will become `index, columns, values` with `values` as an optional parameter."
" Use keyword arguments to silence this warning."
),
version="0.20.8",
)

def pivot(
self,
index: ColumnNameOrSelector | Sequence[ColumnNameOrSelector] | None,
Expand Down

0 comments on commit 8549348

Please sign in to comment.