diff options
| author | John L. Villalovos <john.l.villalovos@intel.com> | 2015-02-20 12:42:12 -0800 |
|---|---|---|
| committer | John L. Villalovos <john.l.villalovos@intel.com> | 2015-02-26 08:40:25 -0800 |
| commit | 12eedb9ae61acf3ed0a69dd9ea46d5f4408dc174 (patch) | |
| tree | 846bcb25404259dba55abd59edecff009660864d /ironicclient/shell.py | |
| parent | 6044bd77a47794e50d8b157c29cb3dcd19a355c0 (diff) | |
| download | python-ironicclient-12eedb9ae61acf3ed0a69dd9ea46d5f4408dc174.tar.gz | |
Fix PEP8 E121,E122,E123,E124,E125,E129 errors
E121: continuation line under-indented for hanging indent
E122: continuation line missing indentation or outdented
E123: closing bracket does not match indentation of opening bracket's line
E124: closing bracket does not match visual indentation
E125: continuation line with same indent as next logical line
E129: visually indented line with same indent as next logical line
Remove E121,E122,E123,E124,E125, & E129 from the ignore list for flake8
Change-Id: I1b98335dd24086ab0271d25d662ad667ff8c5835
Diffstat (limited to 'ironicclient/shell.py')
| -rw-r--r-- | ironicclient/shell.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ironicclient/shell.py b/ironicclient/shell.py index 137c649..c9ec341 100644 --- a/ironicclient/shell.py +++ b/ironicclient/shell.py @@ -186,9 +186,9 @@ class IronicShell(object): parser.add_argument('--ironic-api-version', default=cliutils.env( - 'IRONIC_API_VERSION', default='1'), + 'IRONIC_API_VERSION', default='1'), help='Defaults to env[IRONIC_API_VERSION] ' - 'or 1') + 'or 1') parser.add_argument('--ironic_api_version', help=argparse.SUPPRESS) @@ -428,9 +428,9 @@ class IronicShell(object): 'auth_ref': None, } elif (args.os_username and - args.os_password and - args.os_auth_url and - (project_id or project_name)): + args.os_password and + args.os_auth_url and + (project_id or project_name)): keystone_session = kssession.Session.load_from_cli_options(args) |
