diff options
author | Richard van der Hoff <richard@matrix.org> | 2016-07-22 13:21:07 +0100 |
---|---|---|
committer | Richard van der Hoff <richard@matrix.org> | 2016-07-22 13:21:07 +0100 |
commit | 363786845b728bcd7146b3d949a86021a96eb2d2 (patch) | |
tree | 3860b0d4cede759befbf84e5c7c5aff82cfc32de /synapse/storage/client_ips.py | |
parent | Create index on user_ips in the background (diff) | |
download | synapse-363786845b728bcd7146b3d949a86021a96eb2d2.tar.xz |
PEP8
Diffstat (limited to 'synapse/storage/client_ips.py')
-rw-r--r-- | synapse/storage/client_ips.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/synapse/storage/client_ips.py b/synapse/storage/client_ips.py index 20eb9ac15f..71e5ea112f 100644 --- a/synapse/storage/client_ips.py +++ b/synapse/storage/client_ips.py @@ -44,7 +44,6 @@ class ClientIpStore(background_updates.BackgroundUpdateStore): columns=["user_id", "device_id", "last_seen"], ) - @defer.inlineCallbacks def insert_client_ip(self, user, access_token, ip, user_agent, device_id): now = int(self._clock.time_msec()) |