Skip to content

Commit 7ad26fb

Browse files
committed
Ruff config: ignore C901, function complexity
1 parent 7f0ff48 commit 7ad26fb

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

pyproject.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,9 @@ select = [
347347
"UP", # pyupgrade
348348
"W", # pycodestyle
349349
]
350-
ignore = []
350+
ignore = [
351+
"C901", # ignore function complexity
352+
]
351353

352354
[tool.ruff.lint.pydocstyle]
353355
convention = "google"

0 commit comments

Comments
 (0)