Skip to content

Commit a581e12

Browse files
committed
Rename plugin attributes to match flake8 conventions
1 parent 0489a4e commit a581e12

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • src/community_of_python_flake8_plugin

src/community_of_python_flake8_plugin/plugin.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ def visit(self, node: ast.AST) -> None: ... # noqa: COP004F,COP004G,COP008
2222

2323
@typing.final
2424
class CommunityOfPythonFlake8Plugin:
25-
plugin_name: typing.Final[str] = "community-of-python-flake8-plugin"
26-
plugin_version: typing.Final[str] = "0.1.27"
25+
name: typing.Final[str] = "community-of-python-flake8-plugin"
26+
version: typing.Final[str] = "0.1.27"
2727

2828
def __init__(self, tree: ast.AST) -> None: # noqa: COP004G
2929
self.ast_syntax_tree: typing.Final[ast.AST] = tree

0 commit comments

Comments
 (0)