You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: pyproject.toml
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -292,6 +292,8 @@ select = [
292
292
"B",
293
293
# remove unused imports
294
294
"F401",
295
+
# check for missing future annotations
296
+
"FA102",
295
297
# bare except statements
296
298
"E722",
297
299
# unused arguments
@@ -314,6 +316,8 @@ unfixable = [
314
316
"T203",
315
317
]
316
318
319
+
extend-safe-fixes = ["FA102"]
320
+
317
321
[tool.ruff.lint.flake8-tidy-imports.banned-api]
318
322
"functools.lru_cache".msg = "This function does not retain type information for the wrapped function's arguments; The `lru_cache` function from `_utils` should be used instead"
0 commit comments