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
@@ -211,6 +211,8 @@ select = [
211
211
"B",
212
212
# remove unused imports
213
213
"F401",
214
+
# check for missing future annotations
215
+
"FA102",
214
216
# bare except statements
215
217
"E722",
216
218
# unused arguments
@@ -233,6 +235,8 @@ unfixable = [
233
235
"T203",
234
236
]
235
237
238
+
extend-safe-fixes = ["FA102"]
239
+
236
240
[tool.ruff.lint.flake8-tidy-imports.banned-api]
237
241
"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