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
.collect()
unexpected keywords
import polars as pl pl.LazyFrame().collect(FOO=True) # shape: (0, 0) # ┌┐ # ╞╡ # └┘
No response
kwargs were removed from .collect() in #11567
It seems something changed after 0.20.23 which allows unexpected keywords to pass through again.
0.20.23
I'm assuming this was unintended.
TypeError: LazyFrame.collect() got an unexpected keyword argument 'FOO'
--------Version info--------- Polars: 0.20.30 Index type: UInt32 Platform: macOS-13.6.1-arm64-arm-64bit Python: 3.12.2 (main, Feb 6 2024, 20:19:44) [Clang 15.0.0 (clang-1500.1.0.2.5)] ----Optional dependencies---- adbc_driver_manager: <not installed> cloudpickle: <not installed> connectorx: <not installed> deltalake: <not installed> fastexcel: <not installed> fsspec: <not installed> gevent: <not installed> hvplot: <not installed> matplotlib: <not installed> nest_asyncio: <not installed> numpy: 1.26.4 openpyxl: <not installed> pandas: 2.2.1 pyarrow: 15.0.2 pydantic: <not installed> pyiceberg: <not installed> pyxlsb: <not installed> sqlalchemy: <not installed> xlsx2csv: <not installed> xlsxwriter: <not installed>
The text was updated successfully, but these errors were encountered:
I see this:
callback = _kwargs.get("post_opt_callback")
This should not be done with kwargs but with a private keyword arg.
kwargs
Sorry, something went wrong.
Fixed by #19618
No branches or pull requests
Checks
Reproducible example
Log output
No response
Issue description
kwargs were removed from
.collect()
in #11567It seems something changed after
0.20.23
which allows unexpected keywords to pass through again.I'm assuming this was unintended.
Expected behavior
Installed versions
The text was updated successfully, but these errors were encountered: