Skip to content

Commit 1576919

Browse files
committed
Remove COP009 prefix from mapping proxy check class name
1 parent 77123b4 commit 1576919

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/community_of_python_flake8_plugin/checks/cop009_mapping_proxy.py renamed to src/community_of_python_flake8_plugin/checks/mapping_proxy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def is_mapping_proxy_type(annotation: ast.expr | None) -> bool:
1717

1818

1919
@typing.final
20-
class COP009MappingProxyCheck(ast.NodeVisitor):
20+
class MappingProxyCheck(ast.NodeVisitor):
2121
def __init__(self, syntax_tree: ast.AST) -> None: # noqa: ARG002
2222
self.violations: list[Violation] = []
2323

0 commit comments

Comments
 (0)