We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent baccc26 commit f5bd972Copy full SHA for f5bd972
pyproject.toml
@@ -79,6 +79,7 @@ ignore = [
79
"PLR0912", # Too many branches (ok for our code)
80
"PLR0915", # Too many statements (ok for our code)
81
"PLW2901", # Loop variable overwritten (intentional in some cases)
82
+ "PLC0415", # Import should be at top-level (ok in test fixtures)
83
"ARG001", # Unused function argument (normal in tests)
84
"ARG002", # Unused method argument (normal in tests)
85
"E402", # Module level import not at top of file (normal in scripts)
0 commit comments