-
-
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
fix(python): Remove non-existing names from __all__
#17494
Conversation
Before this change, `from polars import *` used to raise the following error: ``` AttributeError: module 'polars' has no attribute 'cumfold'. Did you mean: 'cum_fold'? ```.
That surprises me? |
__all__
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #17494 +/- ##
=======================================
Coverage 80.47% 80.48%
=======================================
Files 1482 1482
Lines 195133 195133
Branches 2778 2778
=======================================
+ Hits 157042 157059 +17
+ Misses 37580 37563 -17
Partials 511 511 ☔ View full report in Codecov by Sentry. |
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.
Thanks!
from polars import *
used to raise the following error before this change: