From 46fb2d2086ed3bdd8f0efad85cb619ba13c61c75 Mon Sep 17 00:00:00 2001 From: sean-m-ssullivan Date: Sat, 3 Apr 2021 14:04:42 -0500 Subject: [PATCH] linting --- awx_collection/plugins/modules/tower_inventory.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/awx_collection/plugins/modules/tower_inventory.py b/awx_collection/plugins/modules/tower_inventory.py index b262a3a7a1..3e9f3613df 100644 --- a/awx_collection/plugins/modules/tower_inventory.py +++ b/awx_collection/plugins/modules/tower_inventory.py @@ -177,7 +177,13 @@ def main(): module.fail_json(msg='You cannot turn a regular inventory into a "smart" inventory.') # If the state was present and we can let the module build or update the existing inventory, this will return on its own - module.create_or_update_if_needed(inventory, inventory_fields, endpoint='inventories', item_type='inventory', associations=association_fields,) + module.create_or_update_if_needed( + inventory, + inventory_fields, + endpoint='inventories', + item_type='inventory', + associations=association_fields, + ) if __name__ == '__main__':