mysql_query: simple refactoring of query type check

This commit is contained in:
Andrew Klychkov 2020-11-06 10:20:28 +03:00
parent c3dd146220
commit ef8a4700b7
2 changed files with 3 additions and 1 deletions

View file

@ -0,0 +1,2 @@
minor_changes:
- mysql_query - simple refactoring of query type check (https://github.com/ansible-collections/community.mysql/pull/58).

View file

@ -146,7 +146,7 @@ def main():
config_file = module.params['config_file']
query = module.params["query"]
if not isinstance(query, str) and not isinstance(query, list):
if not isinstance(query, (str, list)):
module.fail_json(msg="the query option value must be a string or list, passed %s" % type(query))
if isinstance(query, str):