0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-09-05 17:35:28 +02:00

appease pep8

This commit is contained in:
Paul "LeoNerd" Evans 2016-08-25 16:00:31 +01:00
parent c435bfee9c
commit adf53f04ce

View file

@ -60,7 +60,7 @@ class ApplicationServiceApi(SimpleHttpClient):
super(ApplicationServiceApi, self).__init__(hs)
self.clock = hs.get_clock()
self.protocol_meta_cache = ResponseCache(hs, timeout_ms=1*HOUR_IN_MS)
self.protocol_meta_cache = ResponseCache(hs, timeout_ms=HOUR_IN_MS)
@defer.inlineCallbacks
def query_user(self, service, user_id):
@ -145,8 +145,7 @@ class ApplicationServiceApi(SimpleHttpClient):
defer.returnValue((yield self.get_json(uri, {})))
except Exception as ex:
logger.warning("query_3pe_protocol to %s threw exception %s",
uri, ex
)
uri, ex)
defer.returnValue({})
key = (service.id, protocol)