diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2020-07-24 10:53:25 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-24 10:53:25 -0400 |
commit | e739b205885a7132f3dde67545d56655d83096d7 (patch) | |
tree | 726d1078029d89f57ef6adb9f7c0118b801bcbf1 /synapse/handlers/sync.py | |
parent | Do not convert async functions to Deferreds in the interactive_auth_handler (... (diff) | |
download | synapse-e739b205885a7132f3dde67545d56655d83096d7.tar.xz |
Fix up types and comments that refer to Deferreds. (#7945)
Diffstat (limited to 'synapse/handlers/sync.py')
-rw-r--r-- | synapse/handlers/sync.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/synapse/handlers/sync.py b/synapse/handlers/sync.py index 365d7323e4..ebd3e98105 100644 --- a/synapse/handlers/sync.py +++ b/synapse/handlers/sync.py @@ -421,10 +421,6 @@ class SyncHandler(object): potential_recents: Optional[List[EventBase]] = None, newly_joined_room: bool = False, ) -> TimelineBatch: - """ - Returns: - a Deferred TimelineBatch - """ with Measure(self.clock, "load_filtered_recents"): timeline_limit = sync_config.filter_collection.timeline_limit() block_all_timeline = ( |