Skip to content

Commit 69f2555

Browse files
committed
Fix static check: updated pylint & ruff
1 parent e77cdf2 commit 69f2555

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pyproject.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ extend-select = [
152152
"FA", # from __future__ import annotations
153153
"DTZ", # flake8-datetimez
154154
"SLOT", # flake8-slots
155-
"TCH", # flake8-type-checking
155+
"TC", # flake8-type-checking
156156
"S", # flake8-bandit
157157
"A", # flake8-builtins
158158
"B", "T10", "EXE", # flake8-bugbear, flake8-debugger, flake8-executable
@@ -223,6 +223,7 @@ disable = [
223223
"too-many-return-statements",
224224
"too-many-branches",
225225
"too-many-arguments",
226+
"too-many-positional-arguments",
226227
"too-many-locals",
227228
"too-many-statements",
228229
"too-many-instance-attributes",

0 commit comments

Comments
 (0)