From c930011616d64d24975d60728b5ee7698576f49e Mon Sep 17 00:00:00 2001 From: John Westcott IV Date: Sat, 18 Jan 2020 16:03:43 -0500 Subject: [PATCH] Removing default_check_mode --- awx_collection/plugins/modules/tower_team.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/awx_collection/plugins/modules/tower_team.py b/awx_collection/plugins/modules/tower_team.py index f7fd01d156..b5ba0a89a7 100644 --- a/awx_collection/plugins/modules/tower_team.py +++ b/awx_collection/plugins/modules/tower_team.py @@ -80,9 +80,6 @@ def main(): organization = module.params.get('organization') state = module.params.get('state') - # We can either use the default check mode option or we can customize our own - module.default_check_mode() - # Attempt to lookup the org the user specified org_id = module.resolve_name_to_id('organizations', organization)