diff options
author | Paul "LeoNerd" Evans <paul@matrix.org> | 2016-09-09 13:31:39 +0100 |
---|---|---|
committer | Paul "LeoNerd" Evans <paul@matrix.org> | 2016-09-09 13:31:39 +0100 |
commit | bdbcfc2a804fc504aa03d777c6b53d247e45d1ff (patch) | |
tree | 590925cf592b8086fcf01789d17028fda77fe54d /synapse | |
parent | Python isn't JavaScript; have to quote dict keys (diff) | |
download | synapse-bdbcfc2a804fc504aa03d777c6b53d247e45d1ff.tar.xz |
appease pep8
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/rest/client/v2_alpha/thirdparty.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/synapse/rest/client/v2_alpha/thirdparty.py b/synapse/rest/client/v2_alpha/thirdparty.py index d58385d5e5..dca615927a 100644 --- a/synapse/rest/client/v2_alpha/thirdparty.py +++ b/synapse/rest/client/v2_alpha/thirdparty.py @@ -43,7 +43,8 @@ class ThirdPartyProtocolsServlet(RestServlet): class ThirdPartyProtocolServlet(RestServlet): - PATTERNS = client_v2_patterns("/thirdparty/protocol/(?P<protocol>[^/]+)$", releases=()) + PATTERNS = client_v2_patterns("/thirdparty/protocol/(?P<protocol>[^/]+)$", + releases=()) def __init__(self, hs): super(ThirdPartyProtocolServlet, self).__init__() |