mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-11-13 16:40:56 -05:00
Fix typing for SyncHandler (#8237)
This commit is contained in:
parent
6f6f371a87
commit
5bfc79486d
4 changed files with 13 additions and 10 deletions
|
|
@ -298,8 +298,8 @@ class RoomMemberWorkerStore(EventsWorkerStore):
|
|||
return None
|
||||
|
||||
async def get_rooms_for_local_user_where_membership_is(
|
||||
self, user_id: str, membership_list: List[str]
|
||||
) -> Optional[List[RoomsForUser]]:
|
||||
self, user_id: str, membership_list: Collection[str]
|
||||
) -> List[RoomsForUser]:
|
||||
"""Get all the rooms for this *local* user where the membership for this user
|
||||
matches one in the membership list.
|
||||
|
||||
|
|
@ -314,7 +314,7 @@ class RoomMemberWorkerStore(EventsWorkerStore):
|
|||
The RoomsForUser that the user matches the membership types.
|
||||
"""
|
||||
if not membership_list:
|
||||
return None
|
||||
return []
|
||||
|
||||
rooms = await self.db_pool.runInteraction(
|
||||
"get_rooms_for_local_user_where_membership_is",
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@ class TagsWorkerStore(AccountDataWorkerStore):
|
|||
"room_tags", {"user_id": user_id}, ["room_id", "tag", "content"]
|
||||
)
|
||||
|
||||
tags_by_room = {}
|
||||
tags_by_room = {} # type: Dict[str, Dict[str, JsonDict]]
|
||||
for row in rows:
|
||||
room_tags = tags_by_room.setdefault(row["room_id"], {})
|
||||
room_tags[row["tag"]] = db_to_json(row["content"])
|
||||
|
|
@ -123,7 +123,7 @@ class TagsWorkerStore(AccountDataWorkerStore):
|
|||
|
||||
async def get_updated_tags(
|
||||
self, user_id: str, stream_id: int
|
||||
) -> Dict[str, List[str]]:
|
||||
) -> Dict[str, Dict[str, JsonDict]]:
|
||||
"""Get all the tags for the rooms where the tags have changed since the
|
||||
given version
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue