diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2021-01-26 10:50:21 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-26 10:50:21 -0500 |
commit | 1baab2035265cf2543fe3c0ef5412c1ac0740c7e (patch) | |
tree | cb1b9911d3ad794be081378031cfcdc72939f73f /synapse/storage/databases/main/search.py | |
parent | Do not require the CAS service URL setting (use public_baseurl instead). (#9199) (diff) | |
download | synapse-1baab2035265cf2543fe3c0ef5412c1ac0740c7e.tar.xz |
Add type hints to various handlers. (#9223)
With this change all handlers except the e2e_* ones have type hints enabled.
Diffstat (limited to 'synapse/storage/databases/main/search.py')
-rw-r--r-- | synapse/storage/databases/main/search.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/synapse/storage/databases/main/search.py b/synapse/storage/databases/main/search.py index 871af64b11..f5e7d9ef98 100644 --- a/synapse/storage/databases/main/search.py +++ b/synapse/storage/databases/main/search.py @@ -24,6 +24,7 @@ from synapse.storage._base import SQLBaseStore, db_to_json, make_in_list_sql_cla from synapse.storage.database import DatabasePool from synapse.storage.databases.main.events_worker import EventRedactBehaviour from synapse.storage.engines import PostgresEngine, Sqlite3Engine +from synapse.types import Collection logger = logging.getLogger(__name__) @@ -460,7 +461,7 @@ class SearchStore(SearchBackgroundUpdateStore): async def search_rooms( self, - room_ids: List[str], + room_ids: Collection[str], search_term: str, keys: List[str], limit, |