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
@@ -222,6 +222,8 @@ select = [
222
222
"B",
223
223
# remove unused imports
224
224
"F401",
225
+
# check for missing future annotations
226
+
"FA102",
225
227
# bare except statements
226
228
"E722",
227
229
# unused arguments
@@ -244,6 +246,8 @@ unfixable = [
244
246
"T203",
245
247
]
246
248
249
+
extend-safe-fixes = ["FA102"]
250
+
247
251
[tool.ruff.lint.flake8-tidy-imports.banned-api]
248
252
"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