-
Notifications
You must be signed in to change notification settings - Fork 13
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: RuntimeWarning in lightness plot #497
Conversation
The warning originates from the cast from float to int (inside matplotlib) when there are invalid parts in the field. We did set those to np.nan and get a warning about invalid values in the cast to uint8.
PR Analysis
PR Feedback
How to use
|
/review |
PR Analysis
PR Feedback
How to use
|
Codecov ReportAll modified lines are covered by tests ✅
❗ Your organization needs to install the Codecov GitHub app to enable full functionality. Additional details and impacted files@@ Coverage Diff @@
## master #497 +/- ##
=======================================
Coverage 93.49% 93.49%
=======================================
Files 28 28
Lines 3027 3027
=======================================
Hits 2830 2830
Misses 197 197
☔ View full report in Codecov by Sentry. |
/improve --extended |
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
The warning originates from the cast from float to int (inside matplotlib) when there are invalid parts in the field. We did set those to np.nan and get a warning about invalid values in the cast to uint8.