summary refs log tree commit diff
path: root/synapse/rest/client/v2_alpha
diff options
context:
space:
mode:
authorKegan Dougal <kegan@matrix.org>2016-11-10 15:22:11 +0000
committerKegan Dougal <kegan@matrix.org>2016-11-10 15:22:11 +0000
commit8a8ad46f48525812c983dadcd9e2757cebaaa6cf (patch)
tree2014f29da2ece48ce99db3a5b32bd01a417f759c /synapse/rest/client/v2_alpha
parentStore Promise<Response> instead of Response for HTTP API transactions (diff)
downloadsynapse-8a8ad46f48525812c983dadcd9e2757cebaaa6cf.tar.xz
Flake8
Diffstat (limited to 'synapse/rest/client/v2_alpha')
-rw-r--r--synapse/rest/client/v2_alpha/sendtodevice.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/rest/client/v2_alpha/sendtodevice.py b/synapse/rest/client/v2_alpha/sendtodevice.py
index 7c800ca895..4d13e793ac 100644
--- a/synapse/rest/client/v2_alpha/sendtodevice.py
+++ b/synapse/rest/client/v2_alpha/sendtodevice.py
@@ -51,7 +51,7 @@ class SendToDeviceRestServlet(servlet.RestServlet):
             defer.returnValue(res)
         except KeyError:
             pass
-        
+
         res_deferred = self._put(request, message_type, txn_id)
         self.txns.store_client_transaction(request, txn_id, res_deferred)
         res = yield res_deferred