mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2024-10-01 08:25:44 -04:00
Redundant parens
This commit is contained in:
parent
6d485dd1c7
commit
445ad9941e
@ -92,7 +92,7 @@ class PushRuleStore(SQLBaseStore):
|
||||
res = txn.fetchall()
|
||||
if not res:
|
||||
raise RuleNotFoundException("before/after rule not found: %s" % (relative_to_rule))
|
||||
(priority_class, base_rule_priority) = res[0]
|
||||
priority_class, base_rule_priority = res[0]
|
||||
|
||||
if 'priority_class' in kwargs and kwargs['priority_class'] != priority_class:
|
||||
raise InconsistentRuleException(
|
||||
|
Loading…
Reference in New Issue
Block a user