Fix sanity issues (#609)

* Fix sanity issues

* Remove ignore entries
This commit is contained in:
Andrew Klychkov 2024-01-23 11:27:47 +01:00 committed by GitHub
parent 5ed3eaf3ee
commit e34209b3f8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 7 additions and 30 deletions

View file

@ -36,6 +36,7 @@ options:
- List of values to be passed as positional arguments to the query.
- Mutually exclusive with I(named_args).
type: list
elements: raw
named_args:
description:
- Dictionary of key-value arguments to pass to the query.
@ -141,7 +142,7 @@ def main():
argument_spec.update(
query=dict(type='raw', required=True),
login_db=dict(type='str'),
positional_args=dict(type='list'),
positional_args=dict(type='list', elements='raw'),
named_args=dict(type='dict'),
single_transaction=dict(type='bool', default=False),
)