forked from MirrorHub/synapse
Use if not results rather than len, as per feedback.
This commit is contained in:
parent
6fab7bd2c1
commit
2a45f3d448
1 changed files with 1 additions and 1 deletions
|
@ -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 a new issue