mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-05 02:00:31 -07:00
Cleaner type conditionals
Signed-off-by: E.S. Rosenberg a.k.a. Keeper of the Keys <es.rosenberg+github@gmail.com>
This commit is contained in:
parent
e6dde5843a
commit
a124e77505
1 changed files with 2 additions and 2 deletions
|
@ -60,10 +60,10 @@ def user_is_locked(cursor, user, host):
|
|||
|
||||
# ACCOUNT LOCK does not have to be the last option in the CREATE USER query.
|
||||
# Need to handle both DictCursor and non-DictCursor
|
||||
if type(result) == type([]):
|
||||
if type(result) is list:
|
||||
if result[0] and result[0].find('ACCOUNT LOCK') > 0:
|
||||
return True
|
||||
elif type(result) == type({}):
|
||||
elif type(result) is dict:
|
||||
for res in result.values():
|
||||
if res.find('ACCOUNT LOCK') > 0:
|
||||
return True
|
||||
|
|
Loading…
Add table
Reference in a new issue