fixup! pylint: Ignore usage of 'unicode' before assignment

This commit is contained in:
Rafael Guterres Jeffman
2024-05-22 11:20:12 -03:00
parent 52241fe233
commit 77c1d206d3
8 changed files with 20 additions and 8 deletions

View File

@@ -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: