summaryrefslogtreecommitdiff
path: root/openstackclient/common
diff options
context:
space:
mode:
authorZuul <zuul@review.openstack.org>2018-04-17 15:19:21 +0000
committerGerrit Code Review <review@openstack.org>2018-04-17 15:19:21 +0000
commit17448ad35967b3d06347f671fd30541b3069407c (patch)
tree1feaabf17864b0522336c132fef8a2abfe21b466 /openstackclient/common
parent30b2203dc75a4fc776875b02258f8d54660249d7 (diff)
parentd60141525987bc973802b4ec9a3b027e071d1966 (diff)
downloadpython-openstackclient-17448ad35967b3d06347f671fd30541b3069407c.tar.gz
Merge "Clean up W503 and E402 pep8 errors"
Diffstat (limited to 'openstackclient/common')
-rw-r--r--openstackclient/common/extension.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/openstackclient/common/extension.py b/openstackclient/common/extension.py
index 139f43ab..71206618 100644
--- a/openstackclient/common/extension.py
+++ b/openstackclient/common/extension.py
@@ -75,8 +75,10 @@ class ListExtension(command.Lister):
# by default we want to show everything, unless the
# user specifies one or more of the APIs to show
# for now, only identity and compute are supported.
- show_all = (not parsed_args.identity and not parsed_args.compute
- and not parsed_args.volume and not parsed_args.network)
+ show_all = (not parsed_args.identity and
+ not parsed_args.compute and
+ not parsed_args.volume and
+ not parsed_args.network)
if parsed_args.identity or show_all:
identity_client = self.app.client_manager.identity