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
@@ -256,6 +256,8 @@ select = [
256
256
"B",
257
257
# remove unused imports
258
258
"F401",
259
+
# check for missing future annotations
260
+
"FA102",
259
261
# bare except statements
260
262
"E722",
261
263
# unused arguments
@@ -278,6 +280,8 @@ unfixable = [
278
280
"T203",
279
281
]
280
282
283
+
extend-safe-fixes = ["FA102"]
284
+
281
285
[tool.ruff.lint.flake8-tidy-imports.banned-api]
282
286
"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