mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fixing limit type from list to string
This commit is contained in:
parent
fbad76e86a
commit
3ef5be470f
1 changed files with 1 additions and 1 deletions
|
@ -326,7 +326,7 @@ def main():
|
|||
to_ports=dict(required=False, default=None, type='str'),
|
||||
comment=dict(required=False, default=None, type='str'),
|
||||
ctstate=dict(required=False, default=[], type='list'),
|
||||
limit=dict(required=False, default=[], type='list'),
|
||||
limit=dict(required=False, default=None, type='str'),
|
||||
),
|
||||
)
|
||||
args = dict(
|
||||
|
|
Loading…
Reference in a new issue