Fix sanity errors. (#55)

This commit is contained in:
Felix Fontein 2021-10-19 14:04:30 +02:00 committed by GitHub
parent 65034de769
commit 4ccd70cc8f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 16 additions and 27 deletions

View file

@ -27,6 +27,8 @@ options:
not be collected.
required: false
default: '!config'
type: list
elements: str
seealso:
- ref: ansible_collections.community.routeros.docsite.ssh-guide
description: How to connect to RouterOS devices with SSH
@ -586,7 +588,7 @@ def main():
"""main entry point for module execution
"""
argument_spec = dict(
gather_subset=dict(default=['!config'], type='list')
gather_subset=dict(default=['!config'], type='list', elements='str')
)
argument_spec.update(routeros_argument_spec)