diff options
author | Olivier Wilkinson (reivilibre) <olivier@librepush.net> | 2019-08-20 14:27:47 +0100 |
---|---|---|
committer | Olivier Wilkinson (reivilibre) <olivier@librepush.net> | 2019-08-20 14:27:47 +0100 |
commit | 1819563640e1be839c348e18afc1b59c7b3b8c9c (patch) | |
tree | 6919a98fd1725e8ca6cbedd25f98a228c1cb2077 | |
parent | Add storage function for storing stats deltas (diff) | |
download | synapse-1819563640e1be839c348e18afc1b59c7b3b8c9c.tar.xz |
Ack, isort!
Signed-off-by: Olivier Wilkinson (reivilibre) <olivier@librepush.net>
-rw-r--r-- | synapse/storage/stats.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/synapse/storage/stats.py b/synapse/storage/stats.py index e8b1ce240b..4e0a3d4f6e 100644 --- a/synapse/storage/stats.py +++ b/synapse/storage/stats.py @@ -16,9 +16,10 @@ import logging -from synapse.storage.state_deltas import StateDeltasStore from twisted.internet import defer +from synapse.storage.state_deltas import StateDeltasStore + logger = logging.getLogger(__name__) # these fields track absolutes (e.g. total number of rooms on the server) |