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