diff options
author | David Robertson <davidr@element.io> | 2021-11-11 16:49:28 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-11 16:49:28 +0000 |
commit | 8dc666f785c653e958728a74758bdb8afb494de4 (patch) | |
tree | ba327b3002960996c76c2f69a21977f9effaf1ac /synapse | |
parent | Move sql file for `remove_deleted_devices_from_device_inbox` into v65 (#11303) (diff) | |
download | synapse-8dc666f785c653e958728a74758bdb8afb494de4.tar.xz |
Correct type hint for room_batch.py (#11310)
Co-authored-by: Patrick Cloke <clokep@users.noreply.github.com>
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/storage/databases/main/room_batch.py | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/synapse/storage/databases/main/room_batch.py b/synapse/storage/databases/main/room_batch.py index 97b2618437..39e80f6f5b 100644 --- a/synapse/storage/databases/main/room_batch.py +++ b/synapse/storage/databases/main/room_batch.py @@ -39,13 +39,11 @@ class RoomBatchStore(SQLBaseStore): async def store_state_group_id_for_event_id( self, event_id: str, state_group_id: int - ) -> Optional[str]: - { - await self.db_pool.simple_upsert( - table="event_to_state_groups", - keyvalues={"event_id": event_id}, - values={"state_group": state_group_id, "event_id": event_id}, - # Unique constraint on event_id so we don't have to lock - lock=False, - ) - } + ) -> None: + await self.db_pool.simple_upsert( + table="event_to_state_groups", + keyvalues={"event_id": event_id}, + values={"state_group": state_group_id, "event_id": event_id}, + # Unique constraint on event_id so we don't have to lock + lock=False, + ) |