summaryrefslogtreecommitdiff
path: root/lib/ansible/modules/web_infrastructure/ansible_tower/tower_job_cancel.py
diff options
context:
space:
mode:
authorAbhijeet Kasurde <akasurde@redhat.com>2017-05-11 21:56:36 +0530
committerMatt Martz <matt@sivel.net>2017-05-11 11:26:36 -0500
commit728d3e6c84a8bae9054d24cc20aa6399d3bfd264 (patch)
tree2438b0a4591692d0be1bba893b8a0c7cd3440273 /lib/ansible/modules/web_infrastructure/ansible_tower/tower_job_cancel.py
parentfc3cc73b73a39b0ab629ba76ac4f9ca65cc38eee (diff)
downloadansible-728d3e6c84a8bae9054d24cc20aa6399d3bfd264.tar.gz
Pep8 fixes for web_infra/ansible_tower (#24479)
Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
Diffstat (limited to 'lib/ansible/modules/web_infrastructure/ansible_tower/tower_job_cancel.py')
-rw-r--r--lib/ansible/modules/web_infrastructure/ansible_tower/tower_job_cancel.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/ansible/modules/web_infrastructure/ansible_tower/tower_job_cancel.py b/lib/ansible/modules/web_infrastructure/ansible_tower/tower_job_cancel.py
index 8cb8fabab2..0d99242f5e 100644
--- a/lib/ansible/modules/web_infrastructure/ansible_tower/tower_job_cancel.py
+++ b/lib/ansible/modules/web_infrastructure/ansible_tower/tower_job_cancel.py
@@ -1,5 +1,5 @@
#!/usr/bin/python
-#coding: utf-8 -*-
+# coding: utf-8 -*-
# (c) 2017, Wayne Witzel III <wayne@riotousliving.com>
#
@@ -83,12 +83,12 @@ except ImportError:
def main():
argument_spec = tower_argument_spec()
argument_spec.update(dict(
- job_id = dict(type='int', required=True),
- fail_if_not_running = dict(type='bool', default=False),
+ job_id=dict(type='int', required=True),
+ fail_if_not_running=dict(type='bool', default=False),
))
module = AnsibleModule(
- argument_spec = argument_spec,
+ argument_spec=argument_spec,
supports_check_mode=True,
)