summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaurice Escher <maurice.escher@sap.com>2020-11-27 13:04:20 +0100
committerMaurice Escher <maurice.escher@sap.com>2020-11-27 13:21:26 +0100
commit6e7369f2e4e25055121570637de31bcd23fb0cf4 (patch)
treed4ace1a453eb21981241e7f12b8bd00dfa59cc32
parentb0b93c03986f3bb40c5a2ec31ee37c83014e197a (diff)
downloadkeystone-6e7369f2e4e25055121570637de31bcd23fb0cf4.tar.gz
fix E225 missing whitespace around operator
Change-Id: I960379ceb435472cdc754b5f63243c70d552d9c3
-rw-r--r--keystone/models/revoke_model.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/keystone/models/revoke_model.py b/keystone/models/revoke_model.py
index 684155960..63425f1ad 100644
--- a/keystone/models/revoke_model.py
+++ b/keystone/models/revoke_model.py
@@ -170,7 +170,7 @@ def matches(event, token_values):
# rest of the logic.
# The token has two attributes that can match the domain_id.
- if event.domain_id is not None and event.domain_id not in(
+ if event.domain_id is not None and event.domain_id not in (
token_values['identity_domain_id'],
token_values['assignment_domain_id'],):
return False