diff options
author | Erik Johnston <erik@matrix.org> | 2018-07-12 09:45:37 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2018-07-12 09:45:37 +0100 |
commit | aff1dfdf3decdd3ed60d7d8de8d2b07904f39d2b (patch) | |
tree | fdee8c47d7b2608696728db2388147fde403888a | |
parent | Use 'is not None' and add comments (diff) | |
download | synapse-aff1dfdf3decdd3ed60d7d8de8d2b07904f39d2b.tar.xz |
Update return value docstring
-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 33fc2b9b31..0ac665e967 100644 --- a/synapse/storage/receipts.py +++ b/synapse/storage/receipts.py @@ -163,7 +163,7 @@ class ReceiptsWorkerStore(SQLBaseStore): from the start. Returns: - list: A list of receipts. + Deferred[list]: A list of receipts. """ if from_key is not None: # Check the cache first to see if any new receipts have been added |