diff options
author | Kegan Dougal <kegan@matrix.org> | 2015-02-11 10:41:33 +0000 |
---|---|---|
committer | Kegan Dougal <kegan@matrix.org> | 2015-02-11 10:41:33 +0000 |
commit | fd40d992adfb8b63f6e925dad030c63498501408 (patch) | |
tree | 5c34a5955efec056ec2249bc94956da9669b0a7b /synapse/appservice | |
parent | Add newline to EOF (diff) | |
download | synapse-fd40d992adfb8b63f6e925dad030c63498501408.tar.xz |
PEP8-ify
Diffstat (limited to 'synapse/appservice')
-rw-r--r-- | synapse/appservice/api.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/synapse/appservice/api.py b/synapse/appservice/api.py index 15ac1e27fc..6192813c03 100644 --- a/synapse/appservice/api.py +++ b/synapse/appservice/api.py @@ -71,7 +71,6 @@ class ApplicationServiceApi(SimpleHttpClient): logger.warning("query_alias to %s threw exception %s", uri, ex) defer.returnValue(False) - @defer.inlineCallbacks def push_bulk(self, service, events): events = self._serialize(events) @@ -107,4 +106,3 @@ class ApplicationServiceApi(SimpleHttpClient): return [ serialize_event(e, time_now, as_client_event=True) for e in events ] - |