Skip to content

Commit 9e92dcd

Browse files
committed
fix waring
1 parent 290dfdd commit 9e92dcd

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

server/pyproject.toml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,10 @@ line-length = 120
5454
# McCabe complexity (`C901`) by default.
5555
lint.select = [ "ALL" ]
5656
lint.ignore = [
57-
"D", # TODO fix docstrings later
58-
"E501", # line too long, handled by line-length
59-
"N", # twisted doesn't follow naming conventions, so ignore all naming rules
57+
"COM812", # may cause conflicts when used with the formatter
58+
"D", # TODO fix docstrings later
59+
"E501", # line too long, handled by line-length
60+
"N", # twisted doesn't follow naming conventions, so ignore all naming rules
6061
]
6162

6263
lint.per-file-ignores."tests/*" = [ "S101" ]

0 commit comments

Comments
 (0)