summaryrefslogtreecommitdiff
path: root/lib/ansible/modules/web_infrastructure/ansible_tower/tower_organization.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_organization.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_organization.py')
-rw-r--r--lib/ansible/modules/web_infrastructure/ansible_tower/tower_organization.py20
1 files changed, 10 insertions, 10 deletions
diff --git a/lib/ansible/modules/web_infrastructure/ansible_tower/tower_organization.py b/lib/ansible/modules/web_infrastructure/ansible_tower/tower_organization.py
index 0b537e45cb..65741860cc 100644
--- a/lib/ansible/modules/web_infrastructure/ansible_tower/tower_organization.py
+++ b/lib/ansible/modules/web_infrastructure/ansible_tower/tower_organization.py
@@ -1,5 +1,5 @@
#!/usr/bin/python
-#coding: utf-8 -*-
+# coding: utf-8 -*-
# (c) 2017, Wayne Witzel III <wayne@riotousliving.com>
#
@@ -111,15 +111,15 @@ except ImportError:
def main():
module = AnsibleModule(
- argument_spec = dict(
- name = dict(required=True),
- description = dict(),
- tower_host = dict(),
- tower_username = dict(),
- tower_password = dict(no_log=True),
- tower_verify_ssl = dict(type='bool', default=True),
- tower_config_file = dict(type='path'),
- state = dict(choices=['present', 'absent'], default='present'),
+ argument_spec=dict(
+ name=dict(required=True),
+ description=dict(),
+ tower_host=dict(),
+ tower_username=dict(),
+ tower_password=dict(no_log=True),
+ tower_verify_ssl=dict(type='bool', default=True),
+ tower_config_file=dict(type='path'),
+ state=dict(choices=['present', 'absent'], default='present'),
),
supports_check_mode=True
)