mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2025-01-20 08:51:31 -05:00
Use if not results rather than len, as per feedback.
This commit is contained in:
parent
6fab7bd2c1
commit
2a45f3d448
@ -63,7 +63,7 @@ class PushRuleStore(SQLBaseStore):
|
||||
{'user_name': user_name, 'rule_id': rule_id},
|
||||
['enabled']
|
||||
)
|
||||
if len(results) == 0:
|
||||
if not results:
|
||||
defer.returnValue(True)
|
||||
defer.returnValue(results[0])
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user