-
-
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 docs build #19848
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #19848 +/- ##
==========================================
+ Coverage 79.37% 79.39% +0.02%
==========================================
Files 1550 1550
Lines 214743 214840 +97
Branches 2460 2460
==========================================
+ Hits 170457 170582 +125
+ Misses 43727 43699 -28
Partials 559 559 ☔ View full report in Codecov by Sentry. |
32d48db
to
5bde56e
Compare
@@ -130,7 +134,10 @@ | |||
schema_overrides={"species": pl.Categorical}, | |||
) | |||
|
|||
bears = pl.concat([male_bears, female_bears], how="vertical") | |||
with warnings.catch_warnings(): | |||
warnings.filterwarnings("ignore", category=CategoricalRemappingWarning) |
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.
Oh, this (setting the filter) is still needed? 😪
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.
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.
Good catches! Thanks
CI failure unrelated (VSCode marketplace URL is flaky).