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