fix E225 missing whitespace around operator

Change-Id: I960379ceb435472cdc754b5f63243c70d552d9c3
This commit is contained in:
Maurice Escher 2020-11-27 13:04:20 +01:00
parent b0b93c0398
commit 6e7369f2e4
No known key found for this signature in database
GPG Key ID: CC56DEC23EE46750
1 changed files with 1 additions and 1 deletions

View File

@ -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