summaryrefslogtreecommitdiff
path: root/lib/ansible
diff options
context:
space:
mode:
authorMatt Clay <matt@mystile.com>2017-01-27 13:04:59 -0800
committerMatt Clay <matt@mystile.com>2017-01-27 14:06:21 -0800
commit63b1e0c277fd19f651bd925386f7fcb9d1e89cfb (patch)
tree6f3297f5cad67d45f555d6f55ff8c05c363b3543 /lib/ansible
parent13fc909058c76ec7f141c7aa8db7f97ac3b5e896 (diff)
downloadansible-63b1e0c277fd19f651bd925386f7fcb9d1e89cfb.tar.gz
Fix infrequent PEP 8 issues.
Diffstat (limited to 'lib/ansible')
-rw-r--r--lib/ansible/cli/__init__.py6
-rw-r--r--lib/ansible/galaxy/token.py2
-rwxr-xr-xlib/ansible/module_utils/ec2.py2
-rw-r--r--lib/ansible/modules/cloud/amazon/cloudtrail.py2
-rw-r--r--lib/ansible/modules/cloud/amazon/ec2_vpc_dhcp_options_facts.py2
-rw-r--r--lib/ansible/modules/cloud/amazon/ec2_vpc_vgw_facts.py4
-rw-r--r--lib/ansible/modules/cloud/openstack/_quantum_network.py2
-rw-r--r--lib/ansible/modules/cloud/vmware/vmware_vm_vss_dvs_migrate.py2
-rw-r--r--lib/ansible/modules/files/unarchive.py8
-rw-r--r--lib/ansible/modules/network/illumos/dladm_vlan.py2
-rw-r--r--lib/ansible/modules/network/ios/ios_config.py2
-rw-r--r--lib/ansible/modules/network/nxos/nxos_gir.py2
-rw-r--r--lib/ansible/modules/network/nxos/nxos_igmp_interface.py2
-rw-r--r--lib/ansible/modules/network/nxos/nxos_interface.py4
-rw-r--r--lib/ansible/modules/network/nxos/nxos_portchannel.py2
-rw-r--r--lib/ansible/modules/network/nxos/nxos_vrf_interface.py2
-rw-r--r--lib/ansible/modules/packaging/os/pkgng.py5
-rw-r--r--lib/ansible/modules/system/lvol.py2
-rw-r--r--lib/ansible/modules/system/open_iscsi.py2
-rw-r--r--lib/ansible/modules/web_infrastructure/letsencrypt.py3
-rw-r--r--lib/ansible/modules/windows/win_share.py2
-rw-r--r--lib/ansible/modules/windows/win_shortcut.py2
-rw-r--r--lib/ansible/playbook/helpers.py2
-rw-r--r--lib/ansible/plugins/lookup/mongodb.py3
24 files changed, 36 insertions, 31 deletions
diff --git a/lib/ansible/cli/__init__.py b/lib/ansible/cli/__init__.py
index 6574f9fb42..932093e2c8 100644
--- a/lib/ansible/cli/__init__.py
+++ b/lib/ansible/cli/__init__.py
@@ -103,8 +103,10 @@ class CLI(with_metaclass(ABCMeta, object)):
_CONST = re.compile(r"C\(([^)]+)\)")
PAGER = 'less'
- LESS_OPTS = 'FRSX' # -F (quit-if-one-screen) -R (allow raw ansi control chars)
- # -S (chop long lines) -X (disable termcap init and de-init)
+
+ # -F (quit-if-one-screen) -R (allow raw ansi control chars)
+ # -S (chop long lines) -X (disable termcap init and de-init)
+ LESS_OPTS = 'FRSX'
def __init__(self, args, callback=None):
"""
diff --git a/lib/ansible/galaxy/token.py b/lib/ansible/galaxy/token.py
index 02ca833069..4346dc8760 100644
--- a/lib/ansible/galaxy/token.py
+++ b/lib/ansible/galaxy/token.py
@@ -64,4 +64,4 @@ class GalaxyToken(object):
def save(self):
with open(self.file,'w') as f:
yaml.safe_dump(self.config,f,default_flow_style=False)
- \ No newline at end of file
+
diff --git a/lib/ansible/module_utils/ec2.py b/lib/ansible/module_utils/ec2.py
index 9302b445fe..f829373bd3 100755
--- a/lib/ansible/module_utils/ec2.py
+++ b/lib/ansible/module_utils/ec2.py
@@ -619,4 +619,4 @@ def map_complex_type(complex_type, type_map):
type_map))
elif type_map:
return vars(globals()['__builtins__'])[type_map](complex_type)
- return new_type \ No newline at end of file
+ return new_type
diff --git a/lib/ansible/modules/cloud/amazon/cloudtrail.py b/lib/ansible/modules/cloud/amazon/cloudtrail.py
index ab4652fccd..7cb55c83b4 100644
--- a/lib/ansible/modules/cloud/amazon/cloudtrail.py
+++ b/lib/ansible/modules/cloud/amazon/cloudtrail.py
@@ -208,7 +208,7 @@ def main():
results['view'] = cf_man.view(ct_name)
# only update if the values have changed.
if results['view']['S3BucketName'] != s3_bucket_name or \
- results['view'].get('S3KeyPrefix', '') != s3_key_prefix or \
+ results['view'].get('S3KeyPrefix', '') != s3_key_prefix or \
results['view']['IncludeGlobalServiceEvents'] != include_global_events:
if not module.check_mode:
results['update'] = cf_man.update(name=ct_name, s3_bucket_name=s3_bucket_name, s3_key_prefix=s3_key_prefix, include_global_service_events=include_global_events)
diff --git a/lib/ansible/modules/cloud/amazon/ec2_vpc_dhcp_options_facts.py b/lib/ansible/modules/cloud/amazon/ec2_vpc_dhcp_options_facts.py
index 123e6e98ec..28d988debd 100644
--- a/lib/ansible/modules/cloud/amazon/ec2_vpc_dhcp_options_facts.py
+++ b/lib/ansible/modules/cloud/amazon/ec2_vpc_dhcp_options_facts.py
@@ -148,7 +148,7 @@ def main():
module = AnsibleModule(argument_spec=argument_spec)
- # Validate Requirements
+ # Validate Requirements
if not HAS_BOTO3:
module.fail_json(msg='json and botocore/boto3 is required.')
diff --git a/lib/ansible/modules/cloud/amazon/ec2_vpc_vgw_facts.py b/lib/ansible/modules/cloud/amazon/ec2_vpc_vgw_facts.py
index 0775c75bb2..6e378dc271 100644
--- a/lib/ansible/modules/cloud/amazon/ec2_vpc_vgw_facts.py
+++ b/lib/ansible/modules/cloud/amazon/ec2_vpc_vgw_facts.py
@@ -148,7 +148,7 @@ def main():
module = AnsibleModule(argument_spec=argument_spec, supports_check_mode=True)
- # Validate Requirements
+ # Validate Requirements
if not HAS_BOTO3:
module.fail_json(msg='json and boto3 is required.')
@@ -160,7 +160,7 @@ def main():
# call your function here
results = list_virtual_gateways(connection, module)
-
+
module.exit_json(result=results)
diff --git a/lib/ansible/modules/cloud/openstack/_quantum_network.py b/lib/ansible/modules/cloud/openstack/_quantum_network.py
index 9897d50aa4..3a2c754b2e 100644
--- a/lib/ansible/modules/cloud/openstack/_quantum_network.py
+++ b/lib/ansible/modules/cloud/openstack/_quantum_network.py
@@ -270,7 +270,7 @@ def main():
if not module.params['provider_physical_network']:
module.fail_json(msg = " for vlan and flat networks, variable provider_physical_network should be set.")
- if module.params['provider_network_type'] in ['vlan', 'gre']:
+ if module.params['provider_network_type'] in ['vlan', 'gre']:
if not module.params['provider_segmentation_id']:
module.fail_json(msg = " for vlan & gre networks, variable provider_segmentation_id should be set.")
diff --git a/lib/ansible/modules/cloud/vmware/vmware_vm_vss_dvs_migrate.py b/lib/ansible/modules/cloud/vmware/vmware_vm_vss_dvs_migrate.py
index 594a9e1783..966e8f6583 100644
--- a/lib/ansible/modules/cloud/vmware/vmware_vm_vss_dvs_migrate.py
+++ b/lib/ansible/modules/cloud/vmware/vmware_vm_vss_dvs_migrate.py
@@ -159,4 +159,4 @@ from ansible.module_utils.vmware import *
from ansible.module_utils.basic import *
if __name__ == '__main__':
- main() \ No newline at end of file
+ main()
diff --git a/lib/ansible/modules/files/unarchive.py b/lib/ansible/modules/files/unarchive.py
index ac11346ae6..f9d6baede6 100644
--- a/lib/ansible/modules/files/unarchive.py
+++ b/lib/ansible/modules/files/unarchive.py
@@ -559,10 +559,10 @@ class ZipArchive(object):
if self.opts:
cmd.extend(self.opts)
cmd.append(self.src)
- # NOTE: Including (changed) files as arguments is problematic (limits on command line/arguments)
-# if self.includes:
- # NOTE: Command unzip has this strange behaviour where it expects quoted filenames to also be escaped
-# cmd.extend(map(shell_escape, self.includes))
+ # NOTE: Including (changed) files as arguments is problematic (limits on command line/arguments)
+ # if self.includes:
+ # NOTE: Command unzip has this strange behaviour where it expects quoted filenames to also be escaped
+ # cmd.extend(map(shell_escape, self.includes))
if self.excludes:
cmd.extend([ '-x' ] + self.excludes)
cmd.extend([ '-d', self.dest ])
diff --git a/lib/ansible/modules/network/illumos/dladm_vlan.py b/lib/ansible/modules/network/illumos/dladm_vlan.py
index 8ecf0b2d3d..a1981bcb65 100644
--- a/lib/ansible/modules/network/illumos/dladm_vlan.py
+++ b/lib/ansible/modules/network/illumos/dladm_vlan.py
@@ -220,4 +220,4 @@ def main():
if __name__ == '__main__':
- main() \ No newline at end of file
+ main()
diff --git a/lib/ansible/modules/network/ios/ios_config.py b/lib/ansible/modules/network/ios/ios_config.py
index b582794f30..ad0c5ac19d 100644
--- a/lib/ansible/modules/network/ios/ios_config.py
+++ b/lib/ansible/modules/network/ios/ios_config.py
@@ -226,7 +226,7 @@ import time
from ansible.module_utils.local import LocalAnsibleModule
from ansible.module_utils.ios import load_config, get_config, run_commands
from ansible.module_utils.netcfg import NetworkConfig, dumps
-from ansible.module_utils.six import iteritems
+from ansible.module_utils.six import iteritems
from ansible.module_utils.network import NET_TRANSPORT_ARGS, _transitional_argument_spec
diff --git a/lib/ansible/modules/network/nxos/nxos_gir.py b/lib/ansible/modules/network/nxos/nxos_gir.py
index f72f7d79a0..19e0983c77 100644
--- a/lib/ansible/modules/network/nxos/nxos_gir.py
+++ b/lib/ansible/modules/network/nxos/nxos_gir.py
@@ -508,4 +508,4 @@ def main():
if __name__ == '__main__':
- main() \ No newline at end of file
+ main()
diff --git a/lib/ansible/modules/network/nxos/nxos_igmp_interface.py b/lib/ansible/modules/network/nxos/nxos_igmp_interface.py
index e6e6107ead..b72a22940a 100644
--- a/lib/ansible/modules/network/nxos/nxos_igmp_interface.py
+++ b/lib/ansible/modules/network/nxos/nxos_igmp_interface.py
@@ -907,4 +907,4 @@ def main():
if __name__ == '__main__':
- main() \ No newline at end of file
+ main()
diff --git a/lib/ansible/modules/network/nxos/nxos_interface.py b/lib/ansible/modules/network/nxos/nxos_interface.py
index 05dc3c155a..275a0dcf6e 100644
--- a/lib/ansible/modules/network/nxos/nxos_interface.py
+++ b/lib/ansible/modules/network/nxos/nxos_interface.py
@@ -554,7 +554,7 @@ def get_interfaces_dict(module):
}
interface_list = body.get('TABLE_interface')['ROW_interface']
- for index in interface_list:
+ for index in interface_list:
intf = index ['interface']
intf_type = get_interface_type(intf)
@@ -967,4 +967,4 @@ def main():
if __name__ == '__main__':
- main() \ No newline at end of file
+ main()
diff --git a/lib/ansible/modules/network/nxos/nxos_portchannel.py b/lib/ansible/modules/network/nxos/nxos_portchannel.py
index 6e0ebbef1b..6614691b05 100644
--- a/lib/ansible/modules/network/nxos/nxos_portchannel.py
+++ b/lib/ansible/modules/network/nxos/nxos_portchannel.py
@@ -743,4 +743,4 @@ def main():
if __name__ == '__main__':
- main() \ No newline at end of file
+ main()
diff --git a/lib/ansible/modules/network/nxos/nxos_vrf_interface.py b/lib/ansible/modules/network/nxos/nxos_vrf_interface.py
index a3420307a6..66353ee04f 100644
--- a/lib/ansible/modules/network/nxos/nxos_vrf_interface.py
+++ b/lib/ansible/modules/network/nxos/nxos_vrf_interface.py
@@ -505,4 +505,4 @@ def main():
if __name__ == '__main__':
- main() \ No newline at end of file
+ main()
diff --git a/lib/ansible/modules/packaging/os/pkgng.py b/lib/ansible/modules/packaging/os/pkgng.py
index e281f51a02..df5a9713a4 100644
--- a/lib/ansible/modules/packaging/os/pkgng.py
+++ b/lib/ansible/modules/packaging/os/pkgng.py
@@ -175,8 +175,9 @@ def install_packages(module, pkgng_path, packages, cached, pkgsite, dir_arg):
else:
pkgsite = "-r %s" % (pkgsite)
- batch_var = 'env BATCH=yes' # This environment variable skips mid-install prompts,
- # setting them to their default values.
+ # This environment variable skips mid-install prompts,
+ # setting them to their default values.
+ batch_var = 'env BATCH=yes'
if not module.check_mode and not cached:
if old_pkgng:
diff --git a/lib/ansible/modules/system/lvol.py b/lib/ansible/modules/system/lvol.py
index 3ab60cb40a..105e62c650 100644
--- a/lib/ansible/modules/system/lvol.py
+++ b/lib/ansible/modules/system/lvol.py
@@ -414,7 +414,7 @@ def main():
if '+' in size:
size_requested += this_lv['size']
if this_lv['size'] < size_requested:
- if (size_free > 0) and (('+' not in size) or (size_free >= (size_requested - this_lv['size']))):
+ if (size_free > 0) and (('+' not in size) or (size_free >= (size_requested - this_lv['size']))):
tool = module.get_bin_path("lvextend", required=True)
else:
module.fail_json(msg="Logical Volume %s could not be extended. Not enough free space left (%s%s required / %s%s available)" % (this_lv['name'], (size_requested - this_lv['size']), unit, size_free, unit))
diff --git a/lib/ansible/modules/system/open_iscsi.py b/lib/ansible/modules/system/open_iscsi.py
index 16f45ee6e1..b036d3d852 100644
--- a/lib/ansible/modules/system/open_iscsi.py
+++ b/lib/ansible/modules/system/open_iscsi.py
@@ -151,7 +151,7 @@ def iscsi_get_cached_nodes(module, portal=None):
# older versions of scsiadm don't have nice return codes
# for newer versions see iscsiadm(8); also usr/iscsiadm.c for details
- # err can contain [N|n]o records...
+ # err can contain [N|n]o records...
elif rc == 21 or (rc == 255 and "o records found" in err):
nodes = []
else:
diff --git a/lib/ansible/modules/web_infrastructure/letsencrypt.py b/lib/ansible/modules/web_infrastructure/letsencrypt.py
index 731f02c04c..7e8f76329d 100644
--- a/lib/ansible/modules/web_infrastructure/letsencrypt.py
+++ b/lib/ansible/modules/web_infrastructure/letsencrypt.py
@@ -279,7 +279,8 @@ class ACMEDirectory(object):
self.directory = simple_get(self.module,self.directory_root)
- def __getitem__(self, key): return self.directory[key]
+ def __getitem__(self, key):
+ return self.directory[key]
def get_nonce(self,resource=None):
url = self.directory_root
diff --git a/lib/ansible/modules/windows/win_share.py b/lib/ansible/modules/windows/win_share.py
index 5585c1eb76..fb9f72fef5 100644
--- a/lib/ansible/modules/windows/win_share.py
+++ b/lib/ansible/modules/windows/win_share.py
@@ -118,4 +118,4 @@ EXAMPLES = r'''
RETURN = r'''
-''' \ No newline at end of file
+'''
diff --git a/lib/ansible/modules/windows/win_shortcut.py b/lib/ansible/modules/windows/win_shortcut.py
index b54669553f..f22c3a4682 100644
--- a/lib/ansible/modules/windows/win_shortcut.py
+++ b/lib/ansible/modules/windows/win_shortcut.py
@@ -103,4 +103,4 @@ EXAMPLES = r'''
'''
RETURN = '''
-''' \ No newline at end of file
+'''
diff --git a/lib/ansible/playbook/helpers.py b/lib/ansible/playbook/helpers.py
index 9157bde540..5e9c0fb81b 100644
--- a/lib/ansible/playbook/helpers.py
+++ b/lib/ansible/playbook/helpers.py
@@ -293,7 +293,7 @@ def load_list_of_tasks(ds, play, block=None, role=None, task_include=None, use_h
needs_templating = True
break
is_static = C.DEFAULT_TASK_INCLUDES_STATIC or \
- (use_handlers and C.DEFAULT_HANDLER_INCLUDES_STATIC) or \
+ (use_handlers and C.DEFAULT_HANDLER_INCLUDES_STATIC) or \
(not needs_templating and ir.all_parents_static() and not ir.loop)
display.debug('Determined that if include_role static is %s' % str(is_static))
if is_static:
diff --git a/lib/ansible/plugins/lookup/mongodb.py b/lib/ansible/plugins/lookup/mongodb.py
index 9f73a0373a..ded9495a67 100644
--- a/lib/ansible/plugins/lookup/mongodb.py
+++ b/lib/ansible/plugins/lookup/mongodb.py
@@ -23,7 +23,7 @@ import datetime
__metaclass__ = type
try:
- from pymongo import ASCENDING, DESCENDING
+ from pymongo import ASCENDING, DESCENDING
from pymongo.errors import ConnectionFailure
from pymongo import MongoClient
except ImportError:
@@ -40,6 +40,7 @@ else:
from ansible.errors import AnsibleError
from ansible.plugins.lookup import LookupBase
+
class LookupModule(LookupBase):
def _fix_sort_parameter(self, sort_parameter):