-
-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
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
docs: Fix some warnings during doc build #17077
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #17077 +/- ##
=======================================
Coverage 80.86% 80.86%
=======================================
Files 1456 1456
Lines 191141 191140 -1
Branches 2728 2730 +2
=======================================
+ Hits 154562 154567 +5
+ Misses 36073 36066 -7
- Partials 506 507 +1 ☔ View full report in Codecov by Sentry. |
py-polars/src/lazyframe/mod.rs
Outdated
@@ -512,6 +512,9 @@ impl PyLazyFrame { | |||
ldf = ldf.with_new_streaming(new_streaming); | |||
} | |||
|
|||
if streaming { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This shouldn't be toggled here. It is already toggled.
I think we can turn that warning off, but python should pass the settings as is.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
All right, removed the warning & updated the Python side accordingly!
No description provided.