mirror of
https://github.com/freeipa/ansible-freeipa.git
synced 2026-07-25 00:44:42 +00:00
fixup! pylint: Ignore usage of 'unicode' before assignment
This commit is contained in:
@@ -664,7 +664,9 @@ def main():
|
||||
check_parameters(ansible_module, state, action)
|
||||
|
||||
elif (
|
||||
isinstance(group_name, (str, unicode)) # pylint: disable=E0606
|
||||
isinstance(
|
||||
group_name, (str, unicode) # pylint: disable=W0012,E0606
|
||||
)
|
||||
):
|
||||
name = group_name
|
||||
else:
|
||||
|
||||
Reference in New Issue
Block a user