We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
sort
polars version: 0.17.0 platform: macOS node: 22
The df.sort() method is erroneously marked as deprecated:
df.sort()
const df = pl.DataFrame({ a: [1, 2, 3]} ); df.sort('a');
Type system shows that .sort is deprecated
.sort
The intention appears to have been to deprecate the parameter named reverse, but in fact the entire method is deprecated due to mistyped JSDoc syntax.
reverse
The text was updated successfully, but these errors were encountered:
62a70dc
Successfully merging a pull request may close this issue.
polars version: 0.17.0
platform: macOS
node: 22
Describe your bug.
The
df.sort()
method is erroneously marked as deprecated:What are the steps to reproduce the behavior?
What is the actual behavior?
Type system shows that
.sort
is deprecatedWhat is the expected behavior?
The intention appears to have been to deprecate the parameter named
reverse
, but in fact the entire method is deprecated due to mistyped JSDoc syntax.The text was updated successfully, but these errors were encountered: