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