diff options
author | sean-m-sullivan <ssulliva@redhat.com> | 2020-10-29 17:50:29 +0100 |
---|---|---|
committer | sean-m-sullivan <ssulliva@redhat.com> | 2020-10-29 17:50:29 +0100 |
commit | 5703aa8af54eb60fcc8d2fa5b1d206eed5434e88 (patch) | |
tree | 3355f0f30e17f2d4edd261fbc22ac578fbb4e11c /awx_collection | |
parent | update logic for node creation (diff) | |
download | awx-5703aa8af54eb60fcc8d2fa5b1d206eed5434e88.tar.xz awx-5703aa8af54eb60fcc8d2fa5b1d206eed5434e88.zip |
pep8 fixing
Diffstat (limited to 'awx_collection')
-rw-r--r-- | awx_collection/plugins/modules/tower_workflow_job_template_node.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/awx_collection/plugins/modules/tower_workflow_job_template_node.py b/awx_collection/plugins/modules/tower_workflow_job_template_node.py index f559e1ec16..0ca4021247 100644 --- a/awx_collection/plugins/modules/tower_workflow_job_template_node.py +++ b/awx_collection/plugins/modules/tower_workflow_job_template_node.py @@ -205,10 +205,10 @@ def main(): state=dict(choices=['present', 'absent'], default='present'), ) mutually_exclusive = [("unified_job_template", "approval_node")] - required_if=[ - ['state', 'absent', ['identifier']], - ['state', 'present', ['identifier']], - ['state', 'present', ['unified_job_template', 'approval_node', 'success_nodes', 'always_nodes', 'failure_nodes'], 'true'], + required_if = [ + ['state', 'absent', ['identifier']], + ['state', 'present', ['identifier']], + ['state', 'present', ['unified_job_template', 'approval_node', 'success_nodes', 'always_nodes', 'failure_nodes'], 'true'], ] # Create a module for ourselves |