Skip to content

Commit f5bd972

Browse files
committed
fix: ignore PLC0415 in ruff config
1 parent baccc26 commit f5bd972

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ ignore = [
7979
"PLR0912", # Too many branches (ok for our code)
8080
"PLR0915", # Too many statements (ok for our code)
8181
"PLW2901", # Loop variable overwritten (intentional in some cases)
82+
"PLC0415", # Import should be at top-level (ok in test fixtures)
8283
"ARG001", # Unused function argument (normal in tests)
8384
"ARG002", # Unused method argument (normal in tests)
8485
"E402", # Module level import not at top of file (normal in scripts)

0 commit comments

Comments
 (0)