diff options
author | Erik Johnston <erik@matrix.org> | 2018-02-20 17:59:23 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2018-02-20 17:59:23 +0000 |
commit | 8fbb4d0d19031d8cd3742285fb9b36c3bdfc52a0 (patch) | |
tree | 8b8ba40fc5d2df1a88aadcf46b26fe9ac8be45db /synapse/storage | |
parent | Fix comment (diff) | |
download | synapse-8fbb4d0d19031d8cd3742285fb9b36c3bdfc52a0.tar.xz |
Raise exception in abstract method
Diffstat (limited to 'synapse/storage')
-rw-r--r-- | synapse/storage/receipts.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/receipts.py b/synapse/storage/receipts.py index c2a6613a62..40530632c6 100644 --- a/synapse/storage/receipts.py +++ b/synapse/storage/receipts.py @@ -52,7 +52,7 @@ class ReceiptsWorkerStore(SQLBaseStore): Returns: int """ - pass + raise NotImplementedError() @cachedInlineCallbacks() def get_users_with_read_receipts_in_room(self, room_id): |