-
Notifications
You must be signed in to change notification settings - Fork 629
Add Pylint lints #3577
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
Add Pylint lints #3577
Conversation
for ikey, palette in zip(categoricals, palettes, strict=False): | ||
for ikey, pal in zip(categoricals, palettes, strict=False): |
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.
PLW2901 (redefined-loop-name) is great to disentangle hairy code!
Codecov ReportAttention: Patch coverage is
✅ All tests successful. No failed tests found.
Additional details and impacted files@@ Coverage Diff @@
## main #3577 +/- ##
==========================================
+ Coverage 75.48% 75.53% +0.05%
==========================================
Files 113 113
Lines 13169 13147 -22
==========================================
- Hits 9941 9931 -10
+ Misses 3228 3216 -12
|
Co-authored-by: Philipp A <[email protected]>
See scverse/anndata#1241