mirror of
https://github.com/element-hq/synapse.git
synced 2024-12-23 05:00:24 +03:00
Fix up return types
This commit is contained in:
parent
39c4fe8c7e
commit
f91bd40f50
1 changed files with 4 additions and 4 deletions
|
@ -1053,7 +1053,7 @@ class SyncHandler(object):
|
|||
@measure_func("_generate_sync_entry_for_groups")
|
||||
async def _generate_sync_entry_for_groups(
|
||||
self, sync_result_builder: "SyncResultBuilder"
|
||||
):
|
||||
) -> None:
|
||||
user_id = sync_result_builder.sync_config.user.to_string()
|
||||
since_token = sync_result_builder.since_token
|
||||
now_token = sync_result_builder.now_token
|
||||
|
@ -1103,7 +1103,7 @@ class SyncHandler(object):
|
|||
newly_joined_or_invited_users: Set[str],
|
||||
newly_left_rooms: Set[str],
|
||||
newly_left_users: Set[str],
|
||||
):
|
||||
) -> DeviceLists:
|
||||
"""Generate the DeviceLists section of sync
|
||||
|
||||
Args:
|
||||
|
@ -1176,7 +1176,7 @@ class SyncHandler(object):
|
|||
|
||||
async def _generate_sync_entry_for_to_device(
|
||||
self, sync_result_builder: "SyncResultBuilder"
|
||||
):
|
||||
) -> None:
|
||||
"""Generates the portion of the sync response. Populates
|
||||
`sync_result_builder` with the result.
|
||||
"""
|
||||
|
|
Loading…
Reference in a new issue