summary refs log tree commit diff
path: root/synapse/rest/client/v1/push_rule.py
diff options
context:
space:
mode:
authorDavid Baker <dave@matrix.org>2015-01-23 13:25:36 +0000
committerDavid Baker <dave@matrix.org>2015-01-23 13:25:36 +0000
commit98e1080555965c650e09ed09bdac3b52daeda123 (patch)
tree79bbcb4f3e3fc65e5795d80de41da08361d697d0 /synapse/rest/client/v1/push_rule.py
parentstray space (diff)
downloadsynapse-98e1080555965c650e09ed09bdac3b52daeda123.tar.xz
redundant parens
Diffstat (limited to 'synapse/rest/client/v1/push_rule.py')
-rw-r--r--synapse/rest/client/v1/push_rule.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/rest/client/v1/push_rule.py b/synapse/rest/client/v1/push_rule.py
index 9cb2494035..46b8c3f625 100644
--- a/synapse/rest/client/v1/push_rule.py
+++ b/synapse/rest/client/v1/push_rule.py
@@ -122,7 +122,7 @@ class PushRuleRestServlet(RestServlet):
             else:
                 raise InvalidRuleException("Unrecognised action")
 
-        return (conditions, actions)
+        return conditions, actions
 
     def priority_class_from_spec(self, spec):
         if spec['template'] not in PushRuleRestServlet.PRIORITY_CLASS_MAP.keys():