summaryrefslogtreecommitdiff
path: root/keystoneclient/access.py
diff options
context:
space:
mode:
authorDolph Mathews <dolph.mathews@gmail.com>2013-05-28 08:48:44 -0500
committerDolph Mathews <dolph.mathews@gmail.com>2013-06-03 08:04:07 -0500
commitabcf9db6251a2e1349ee199113cc80a136ff2f79 (patch)
treeefcb2845a4889f826e68f121d184beb5a3783163 /keystoneclient/access.py
parent6372fdbf4b46f57bd14e227e7eaad88224d4c313 (diff)
downloadpython-keystoneclient-abcf9db6251a2e1349ee199113cc80a136ff2f79.tar.gz
Fix line continuations (flake8 E125, E126)
- E125: continuation line does not distinguish itself from next logical line - E126: continuation line over-indented for hanging indent Change-Id: I626a6d5d57db927e8b239f90569b5601c772f28b
Diffstat (limited to 'keystoneclient/access.py')
-rw-r--r--keystoneclient/access.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/keystoneclient/access.py b/keystoneclient/access.py
index e552c18..1dc8670 100644
--- a/keystoneclient/access.py
+++ b/keystoneclient/access.py
@@ -109,8 +109,8 @@ class AccessInfo(dict):
:returns: bool
"""
if ('serviceCatalog' in self
- and self['serviceCatalog']
- and 'tenant' in self['token']):
+ and self['serviceCatalog']
+ and 'tenant' in self['token']):
return True
return False