type should be a string, not callable bool (#52735)

pull/52753/head
Matt Martz 6 years ago committed by GitHub
parent fdc3f16bba
commit f90610e48c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -167,7 +167,7 @@ class NetAppOntapVscanOnDemandTask(object):
report_directory=dict(required=False, type='str'),
report_log_level=dict(required=False, choices=['verbose', 'info', 'error'], default='error'),
request_timeout=dict(required=False, type='str'),
scan_files_with_no_ext=dict(required=False, type=bool, default=True),
scan_files_with_no_ext=dict(required=False, type='bool', default=True),
scan_paths=dict(required=False, type="list"),
scan_priority=dict(required=False, choices=['low', 'normal'], default='low'),
schedule=dict(required=False, type="str"),

Loading…
Cancel
Save