diff options
author | Hubert Chathi <hubert@uhoreg.ca> | 2019-11-27 15:44:28 -0500 |
---|---|---|
committer | Hubert Chathi <hubert@uhoreg.ca> | 2019-11-27 15:44:28 -0500 |
commit | 1e2d2615106020ca191f6f49102922b6f709ac65 (patch) | |
tree | 3ac15cbb5b33f0c18618967afa7c1bfeb70245bc | |
parent | Merge branch 'develop' into uhoreg/e2e_backup_hash (diff) | |
download | synapse-uhoreg/e2e_backup_hash.tar.xz |
comment fixes github/uhoreg/e2e_backup_hash uhoreg/e2e_backup_hash
-rw-r--r-- | synapse/storage/data_stores/main/e2e_room_keys.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/synapse/storage/data_stores/main/e2e_room_keys.py b/synapse/storage/data_stores/main/e2e_room_keys.py index 485a721a9c..113224fd7c 100644 --- a/synapse/storage/data_stores/main/e2e_room_keys.py +++ b/synapse/storage/data_stores/main/e2e_room_keys.py @@ -160,9 +160,9 @@ class EndToEndRoomKeyStore(SQLBaseStore): specific key. Args: - user_id(str): the user whose backup we're querying - version(str): the version ID of the backup we're querying about - room_keys(dict[str, dict[str, iterable[str]]]): a map from + user_id (str): the user whose backup we're querying + version (str): the version ID of the backup we're querying about + room_keys (dict[str, dict[str, iterable[str]]]): a map from room ID -> {"session": [session ids]} indicating the session IDs that we want to query |