We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c21276f commit 0d5439bCopy full SHA for 0d5439b
pylint/testutils/functional/lint_module_output_update.py
@@ -22,7 +22,9 @@ class TestDialect(csv.excel):
22
delimiter = ":"
23
lineterminator = "\n"
24
25
- csv.register_dialect("test", TestDialect)
+ # TestDialect inherit from csv.excel, which inherit from Dialect
26
+ # probably something wrong in csv typing
27
+ csv.register_dialect("test", TestDialect) # type: ignore[arg-type]
28
29
def _check_output_text(
30
self,
0 commit comments