pep8 E231 fix for awx_collection

Signed-off-by: Julen Landa Alustiza <jlanda@redhat.com>
This commit is contained in:
Julen Landa Alustiza 2022-02-17 09:34:36 +01:00
parent a94a602ccd
commit 98adb196ea
No known key found for this signature in database
GPG Key ID: A1B0100C5CE4DD27

View File

@ -192,7 +192,9 @@ def main():
association_fields['galaxy_credentials'].append(module.resolve_name_to_id('credentials', item))
# Create the data that gets sent for create and update
org_fields = {'name': new_name if new_name else (module.get_item_name(organization) if organization else name),}
org_fields = {
'name': new_name if new_name else (module.get_item_name(organization) if organization else name),
}
if description is not None:
org_fields['description'] = description
if default_ee is not None: