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
@@ -234,6 +234,8 @@ select = [
234
234
"B",
235
235
# remove unused imports
236
236
"F401",
237
+
# check for missing future annotations
238
+
"FA102",
237
239
# bare except statements
238
240
"E722",
239
241
# unused arguments
@@ -256,6 +258,8 @@ unfixable = [
256
258
"T203",
257
259
]
258
260
261
+
extend-safe-fixes = ["FA102"]
262
+
259
263
[tool.ruff.lint.flake8-tidy-imports.banned-api]
260
264
"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