Skip to content

Commit 1799967

Browse files
[style] Fix snake_case in class name 'TestDialect'
1 parent df570bb commit 1799967

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pylint_django/tests/test_func.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@
1717

1818
if "test" not in csv.list_dialects():
1919

20-
class test_dialect(csv.excel):
20+
class TestDialect(csv.excel):
2121
delimiter = ":"
2222
lineterminator = "\n"
2323

24-
csv.register_dialect("test", test_dialect)
24+
csv.register_dialect("test", TestDialect)
2525

2626
lint_module_test.PYLINTRC = HERE / "testing_pylint.rc"
2727
except (ImportError, AttributeError):

0 commit comments

Comments
 (0)