We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0489a4e commit a581e12Copy full SHA for a581e12
1 file changed
src/community_of_python_flake8_plugin/plugin.py
@@ -22,8 +22,8 @@ def visit(self, node: ast.AST) -> None: ... # noqa: COP004F,COP004G,COP008
22
23
@typing.final
24
class CommunityOfPythonFlake8Plugin:
25
- plugin_name: typing.Final[str] = "community-of-python-flake8-plugin"
26
- plugin_version: typing.Final[str] = "0.1.27"
+ name: typing.Final[str] = "community-of-python-flake8-plugin"
+ version: typing.Final[str] = "0.1.27"
27
28
def __init__(self, tree: ast.AST) -> None: # noqa: COP004G
29
self.ast_syntax_tree: typing.Final[ast.AST] = tree
0 commit comments