mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-25 20:01:25 -07:00
VALID_ACTIONS for cli subcommands will now be a frozenset (#50058)
This commit is contained in:
parent
545edc9114
commit
fcd1486b51
4 changed files with 7 additions and 7 deletions
|
@ -96,7 +96,7 @@ class InvalidOptsParser(SortedOptParser):
|
|||
class CLI(with_metaclass(ABCMeta, object)):
|
||||
''' code behind bin/ansible* programs '''
|
||||
|
||||
VALID_ACTIONS = []
|
||||
VALID_ACTIONS = frozenset()
|
||||
|
||||
_ITALIC = re.compile(r"I\(([^)]+)\)")
|
||||
_BOLD = re.compile(r"B\(([^)]+)\)")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue