mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-06-23 15:54:10 -04:00
Type hint the constructors of the data store classes (#11555)
This commit is contained in:
parent
1abfb15f07
commit
5305a5e881
35 changed files with 351 additions and 87 deletions
|
@ -19,8 +19,7 @@ from typing_extensions import TypedDict
|
|||
|
||||
from synapse.api.errors import SynapseError
|
||||
from synapse.storage._base import SQLBaseStore, db_to_json
|
||||
from synapse.storage.database import DatabasePool
|
||||
from synapse.storage.types import Connection
|
||||
from synapse.storage.database import DatabasePool, LoggingDatabaseConnection
|
||||
from synapse.types import JsonDict
|
||||
from synapse.util import json_encoder
|
||||
|
||||
|
@ -40,7 +39,12 @@ class _RoomInGroup(TypedDict):
|
|||
|
||||
|
||||
class GroupServerWorkerStore(SQLBaseStore):
|
||||
def __init__(self, database: DatabasePool, db_conn: Connection, hs: "HomeServer"):
|
||||
def __init__(
|
||||
self,
|
||||
database: DatabasePool,
|
||||
db_conn: LoggingDatabaseConnection,
|
||||
hs: "HomeServer",
|
||||
):
|
||||
database.updates.register_background_index_update(
|
||||
update_name="local_group_updates_index",
|
||||
index_name="local_group_updates_stream_id_index",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue