Skip to content

Commit

Permalink
Fix infrequent PEP 8 issues.
Browse files Browse the repository at this point in the history
  • Loading branch information
mattclay committed Jan 27, 2017
1 parent 13fc909 commit 63b1e0c
Show file tree
Hide file tree
Showing 31 changed files with 41 additions and 50 deletions.
3 changes: 0 additions & 3 deletions contrib/inventory/consul_io.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,10 +133,7 @@
import re
import argparse
import sys
from time import time
import sys
import ConfigParser
import urllib, urllib2, base64


def get_log_filename():
Expand Down
2 changes: 1 addition & 1 deletion contrib/inventory/spacewalk.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
CACHE_AGE = 300 # 5min
INI_FILE = os.path.join(base_dir, "spacewalk.ini")

# Sanity check
# Sanity check
if not os.path.exists(SW_REPORT):
print('Error: %s is required for operation.' % (SW_REPORT), file=sys.stderr)
sys.exit(1)
Expand Down
3 changes: 2 additions & 1 deletion contrib/inventory/zabbix.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@

from __future__ import print_function

import os, sys
import os
import sys
import argparse
import ConfigParser

Expand Down
2 changes: 1 addition & 1 deletion hacking/dump_playbook_attributes.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

# build ordered list to loop over and dict with attributes
clist.append(name)
oblist[name] = dict((x, aobj.__dict__['_attributes'][x]) for x in aobj.__dict__['_attributes'] if 'private' not in x or not x.private)
oblist[name] = dict((x, aobj.__dict__['_attributes'][x]) for x in aobj.__dict__['_attributes'] if 'private' not in x or not x.private)

# loop is really with_ for users
if name == 'Task':
Expand Down
6 changes: 4 additions & 2 deletions lib/ansible/cli/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
"""
Expand Down
2 changes: 1 addition & 1 deletion lib/ansible/galaxy/token.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,4 +64,4 @@ def get(self):
def save(self):
with open(self.file,'w') as f:
yaml.safe_dump(self.config,f,default_flow_style=False)


2 changes: 1 addition & 1 deletion lib/ansible/module_utils/ec2.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
return new_type
2 changes: 1 addition & 1 deletion lib/ansible/modules/cloud/amazon/cloudtrail.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.')

Expand Down
4 changes: 2 additions & 2 deletions lib/ansible/modules/cloud/amazon/ec2_vpc_vgw_facts.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.')

Expand All @@ -160,7 +160,7 @@ def main():

# call your function here
results = list_virtual_gateways(connection, module)

module.exit_json(result=results)


Expand Down
2 changes: 1 addition & 1 deletion lib/ansible/modules/cloud/openstack/_quantum_network.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.")

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -159,4 +159,4 @@ def main():
from ansible.module_utils.basic import *

if __name__ == '__main__':
main()
main()
8 changes: 4 additions & 4 deletions lib/ansible/modules/files/unarchive.py
Original file line number Diff line number Diff line change
Expand Up @@ -559,10 +559,10 @@ def unarchive(self):
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 ])
Expand Down
2 changes: 1 addition & 1 deletion lib/ansible/modules/network/illumos/dladm_vlan.py
Original file line number Diff line number Diff line change
Expand Up @@ -220,4 +220,4 @@ def main():


if __name__ == '__main__':
main()
main()
2 changes: 1 addition & 1 deletion lib/ansible/modules/network/ios/ios_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@
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


Expand Down
2 changes: 1 addition & 1 deletion lib/ansible/modules/network/nxos/nxos_gir.py
Original file line number Diff line number Diff line change
Expand Up @@ -508,4 +508,4 @@ def main():


if __name__ == '__main__':
main()
main()
2 changes: 1 addition & 1 deletion lib/ansible/modules/network/nxos/nxos_igmp_interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -907,4 +907,4 @@ def main():


if __name__ == '__main__':
main()
main()
4 changes: 2 additions & 2 deletions lib/ansible/modules/network/nxos/nxos_interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down Expand Up @@ -967,4 +967,4 @@ def main():


if __name__ == '__main__':
main()
main()
2 changes: 1 addition & 1 deletion lib/ansible/modules/network/nxos/nxos_portchannel.py
Original file line number Diff line number Diff line change
Expand Up @@ -743,4 +743,4 @@ def main():


if __name__ == '__main__':
main()
main()
2 changes: 1 addition & 1 deletion lib/ansible/modules/network/nxos/nxos_vrf_interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -505,4 +505,4 @@ def main():


if __name__ == '__main__':
main()
main()
5 changes: 3 additions & 2 deletions lib/ansible/modules/packaging/os/pkgng.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion lib/ansible/modules/system/lvol.py
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down
2 changes: 1 addition & 1 deletion lib/ansible/modules/system/open_iscsi.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
3 changes: 2 additions & 1 deletion lib/ansible/modules/web_infrastructure/letsencrypt.py
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,8 @@ def __init__(self, module):

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
Expand Down
2 changes: 1 addition & 1 deletion lib/ansible/modules/windows/win_share.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,4 +118,4 @@

RETURN = r'''
'''
'''
2 changes: 1 addition & 1 deletion lib/ansible/modules/windows/win_shortcut.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,4 +103,4 @@
'''

RETURN = '''
'''
'''
2 changes: 1 addition & 1 deletion lib/ansible/playbook/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
3 changes: 2 additions & 1 deletion lib/ansible/plugins/lookup/mongodb.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
__metaclass__ = type

try:
from pymongo import ASCENDING, DESCENDING
from pymongo import ASCENDING, DESCENDING
from pymongo.errors import ConnectionFailure
from pymongo import MongoClient
except ImportError:
Expand All @@ -40,6 +40,7 @@
from ansible.errors import AnsibleError
from ansible.plugins.lookup import LookupBase


class LookupModule(LookupBase):

def _fix_sort_parameter(self, sort_parameter):
Expand Down
2 changes: 1 addition & 1 deletion test/integration/targets/async/library/async_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,4 @@ def main():
if 'trailing_junk' in fail_mode:
print("trailing junk after module output")

main()
main()
7 changes: 0 additions & 7 deletions test/sanity/pep8/legacy-files.txt
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,6 @@ lib/ansible/modules/cloud/softlayer/sl_vm.py
lib/ansible/modules/cloud/vmware/vca_fw.py
lib/ansible/modules/cloud/vmware/vmware_guest.py
lib/ansible/modules/cloud/vmware/vmware_local_user_manager.py
lib/ansible/modules/cloud/vmware/vmware_vm_vss_dvs_migrate.py
lib/ansible/modules/cloud/vmware/vmware_vswitch.py
lib/ansible/modules/cloud/vmware/vsphere_copy.py
lib/ansible/modules/cloud/vmware/vsphere_guest.py
Expand Down Expand Up @@ -317,8 +316,6 @@ lib/ansible/modules/network/f5/bigip_pool.py
lib/ansible/modules/network/f5/bigip_pool_member.py
lib/ansible/modules/network/f5/bigip_virtual_server.py
lib/ansible/modules/network/haproxy.py
lib/ansible/modules/network/illumos/dladm_vlan.py
lib/ansible/modules/network/ios/ios_config.py
lib/ansible/modules/network/junos/junos_facts.py
lib/ansible/modules/network/lldp.py
lib/ansible/modules/network/nmcli.py
Expand Down Expand Up @@ -456,7 +453,6 @@ lib/ansible/modules/system/lvg.py
lib/ansible/modules/system/lvol.py
lib/ansible/modules/system/modprobe.py
lib/ansible/modules/system/ohai.py
lib/ansible/modules/system/open_iscsi.py
lib/ansible/modules/system/openwrt_init.py
lib/ansible/modules/system/pam_limits.py
lib/ansible/modules/system/sefcontext.py
Expand Down Expand Up @@ -498,9 +494,7 @@ lib/ansible/modules/windows/win_regedit.py
lib/ansible/modules/windows/win_regmerge.py
lib/ansible/modules/windows/win_robocopy.py
lib/ansible/modules/windows/win_say.py
lib/ansible/modules/windows/win_share.py
lib/ansible/modules/windows/win_shell.py
lib/ansible/modules/windows/win_shortcut.py
lib/ansible/modules/windows/win_unzip.py
lib/ansible/modules/windows/win_updates.py
lib/ansible/modules/windows/win_uri.py
Expand Down Expand Up @@ -575,7 +569,6 @@ setup.py
test/integration/cleanup_ec2.py
test/integration/cleanup_gce.py
test/integration/setup_gce.py
test/integration/targets/async/library/async_test.py
test/units/cli/test_galaxy.py
test/units/contrib/inventory/test_vmware_inventory.py
test/units/errors/test_errors.py
Expand Down
5 changes: 0 additions & 5 deletions test/sanity/pep8/legacy-ignore.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,24 +2,19 @@ E101
E111
E114
E115
E116
E121
E122
E125
E126
E129
E131
E271
E272
E401
E501
E701
E703
E704
E711
E712
E721
W191
W291
W292
W293

0 comments on commit 63b1e0c

Please sign in to comment.