diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2021-11-02 09:55:52 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-02 09:55:52 -0400 |
commit | c01bc5f43d1c7d0a25f397b542ced57894395519 (patch) | |
tree | 77f8fa240987be9d35564985f8defe33c5f49188 /synapse/state | |
parent | Delete messages for hidden devices from `device_inbox` (#11199) (diff) | |
download | synapse-c01bc5f43d1c7d0a25f397b542ced57894395519.tar.xz |
Add remaining type hints to `synapse.events`. (#11098)
Diffstat (limited to 'synapse/state')
-rw-r--r-- | synapse/state/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/state/__init__.py b/synapse/state/__init__.py index 98a0239759..1605411b00 100644 --- a/synapse/state/__init__.py +++ b/synapse/state/__init__.py @@ -247,7 +247,7 @@ class StateHandler: return await self.get_hosts_in_room_at_events(room_id, event_ids) async def get_hosts_in_room_at_events( - self, room_id: str, event_ids: List[str] + self, room_id: str, event_ids: Iterable[str] ) -> Set[str]: """Get the hosts that were in a room at the given event ids |