Skip to content

Commit

Permalink
A004 rule is now being enforced
Browse files Browse the repository at this point in the history
Sadly, because of how the subcommand handling works, I couldn't easily
avoid using list
  • Loading branch information
Qalthos committed Dec 3, 2024
1 parent 2891cdd commit 1251329
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/molecule/command/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
destroy, # noqa: F401
drivers, # noqa: F401
idempotence, # noqa: F401
list, # noqa: F401
list, # noqa: A004, F401
login, # noqa: F401
matrix, # noqa: F401
prepare, # noqa: F401
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/command/test_list.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

from typing import TYPE_CHECKING

from molecule.command import list
from molecule.command import list # noqa: A004
from molecule.status import Status


Expand Down

0 comments on commit 1251329

Please sign in to comment.