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