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 df570bb commit 1799967Copy full SHA for 1799967
pylint_django/tests/test_func.py
@@ -17,11 +17,11 @@
17
18
if "test" not in csv.list_dialects():
19
20
- class test_dialect(csv.excel):
+ class TestDialect(csv.excel):
21
delimiter = ":"
22
lineterminator = "\n"
23
24
- csv.register_dialect("test", test_dialect)
+ csv.register_dialect("test", TestDialect)
25
26
lint_module_test.PYLINTRC = HERE / "testing_pylint.rc"
27
except (ImportError, AttributeError):
0 commit comments