mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-05-30 12:59:09 -07:00
fixed frozen set, missing iterable
This commit is contained in:
parent
48c0d6388f
commit
5622fc23bc
1 changed files with 2 additions and 2 deletions
|
@ -26,7 +26,7 @@ from ansible.plugins import module_loader
|
||||||
from ansible.parsing.splitter import parse_kv
|
from ansible.parsing.splitter import parse_kv
|
||||||
|
|
||||||
# For filtering out modules correctly below
|
# For filtering out modules correctly below
|
||||||
RAW_PARAM_MODULES = frozenset(
|
RAW_PARAM_MODULES = ([
|
||||||
'command',
|
'command',
|
||||||
'shell',
|
'shell',
|
||||||
'script',
|
'script',
|
||||||
|
@ -37,7 +37,7 @@ RAW_PARAM_MODULES = frozenset(
|
||||||
'set_fact',
|
'set_fact',
|
||||||
'raw',
|
'raw',
|
||||||
'meta',
|
'meta',
|
||||||
)
|
])
|
||||||
|
|
||||||
class ModuleArgsParser:
|
class ModuleArgsParser:
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue