We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9d7f7d1 commit 77123b4Copy full SHA for 77123b4
2 files changed
…ake8_plugin/checks/cop008_final_class.py …thon_flake8_plugin/checks/final_class.pysrc/community_of_python_flake8_plugin/checks/cop008_final_class.py renamed to src/community_of_python_flake8_plugin/checks/final_class.py
@@ -28,7 +28,7 @@ def is_protocol_class(class_node: ast.ClassDef) -> bool:
28
29
30
@typing.final
31
-class COP008FinalClassCheck(ast.NodeVisitor):
+class FinalClassCheck(ast.NodeVisitor):
32
def __init__(self, syntax_tree: ast.AST) -> None: # noqa: ARG002
33
self.violations: list[Violation] = []
34
…_flake8_plugin/checks/cop007_temp_var.py …_python_flake8_plugin/checks/temp_var.pysrc/community_of_python_flake8_plugin/checks/cop007_temp_var.py renamed to src/community_of_python_flake8_plugin/checks/temp_var.py
0 commit comments