Skip to content

Commit 77123b4

Browse files
committed
Rename and reorganize flake8 plugin checks for temporary variables and final classes
1 parent 9d7f7d1 commit 77123b4

2 files changed

Lines changed: 1 addition & 1 deletion

File tree

src/community_of_python_flake8_plugin/checks/cop008_final_class.py renamed to src/community_of_python_flake8_plugin/checks/final_class.py

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

2929

3030
@typing.final
31-
class COP008FinalClassCheck(ast.NodeVisitor):
31+
class FinalClassCheck(ast.NodeVisitor):
3232
def __init__(self, syntax_tree: ast.AST) -> None: # noqa: ARG002
3333
self.violations: list[Violation] = []
3434

src/community_of_python_flake8_plugin/checks/cop007_temp_var.py renamed to src/community_of_python_flake8_plugin/checks/temp_var.py

File renamed without changes.

0 commit comments

Comments
 (0)