diff options
author | David Baker <dave@matrix.org> | 2015-01-23 13:25:36 +0000 |
---|---|---|
committer | David Baker <dave@matrix.org> | 2015-01-23 13:25:36 +0000 |
commit | 98e1080555965c650e09ed09bdac3b52daeda123 (patch) | |
tree | 79bbcb4f3e3fc65e5795d80de41da08361d697d0 | |
parent | stray space (diff) | |
download | synapse-98e1080555965c650e09ed09bdac3b52daeda123.tar.xz |
redundant parens
-rw-r--r-- | synapse/rest/client/v1/push_rule.py | 2 |
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(): |