From 7908f257477548e718debfb5fb3370ae9b8d24d1 Mon Sep 17 00:00:00 2001 From: John Westcott IV Date: Thu, 13 Feb 2020 14:13:16 -0500 Subject: [PATCH] Remove reference to default check mode --- awx_collection/plugins/modules/tower_credential_type.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/awx_collection/plugins/modules/tower_credential_type.py b/awx_collection/plugins/modules/tower_credential_type.py index b6c8806199..50533dbbdc 100644 --- a/awx_collection/plugins/modules/tower_credential_type.py +++ b/awx_collection/plugins/modules/tower_credential_type.py @@ -124,9 +124,6 @@ def main(): kind = module.params.get('kind') state = module.params.get('state') - # Deal with check mode - module.default_check_mode() - # These will be passed into the create/updates credential_type_params = { 'name': new_name if new_name else name,