We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2848cdd commit 84fde55Copy full SHA for 84fde55
pyproject.toml
@@ -156,11 +156,11 @@ ignore=[
156
"E731",
157
# do not use variables named 'l', 'O', or 'I'
158
"E741",
159
- # E721 is in preview (july 2024) and gives many false positives.
+ # E721 gives many false positives.
160
# Use `is` and `is not` for type comparisons, or `isinstance()` for
161
# isinstance checks
162
"E721",
163
- # F841 is in preview (july 2024), and we don't care much about it.
+ # we don't care much about F841.
164
# Local variable ... is assigned to but never used
165
"F841",
166
# `try`-`except` within a loop incurs performance overhead
0 commit comments