Skip to content

Commit b1f5861

Browse files
committed
Rename dataclass config check class and file
1 parent 1576919 commit b1f5861

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/community_of_python_flake8_plugin/checks/cop010_dataclass_config.py renamed to src/community_of_python_flake8_plugin/checks/dataclass_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ def is_model_factory(class_node: ast.ClassDef) -> bool:
7070

7171

7272
@typing.final
73-
class COP010DataclassConfigCheck(ast.NodeVisitor):
73+
class DataclassConfigCheck(ast.NodeVisitor):
7474
def __init__(self, syntax_tree: ast.AST) -> None: # noqa: ARG002
7575
self.violations: list[Violation] = []
7676

0 commit comments

Comments
 (0)