diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2020-12-29 17:42:10 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-29 17:42:10 -0500 |
commit | 9999eb2d0270519f397343c90dfb394823d08e82 (patch) | |
tree | b737049dc33bbd76da7d3ba70b8f817a740c611f /synapse/storage | |
parent | Validate input parameters for the sendToDevice API. (#8975) (diff) | |
download | synapse-9999eb2d0270519f397343c90dfb394823d08e82.tar.xz |
Add type hints to admin and room list handlers. (#8973)
Diffstat (limited to 'synapse/storage')
-rw-r--r-- | synapse/storage/databases/main/client_ips.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/synapse/storage/databases/main/client_ips.py b/synapse/storage/databases/main/client_ips.py index 339bd691a4..e96a8b3f43 100644 --- a/synapse/storage/databases/main/client_ips.py +++ b/synapse/storage/databases/main/client_ips.py @@ -14,11 +14,12 @@ # limitations under the License. import logging -from typing import Dict, Optional, Tuple +from typing import Dict, List, Optional, Tuple, Union from synapse.metrics.background_process_metrics import wrap_as_background_process from synapse.storage._base import SQLBaseStore from synapse.storage.database import DatabasePool, make_tuple_comparison_clause +from synapse.types import UserID from synapse.util.caches.lrucache import LruCache logger = logging.getLogger(__name__) @@ -546,7 +547,9 @@ class ClientIpStore(ClientIpWorkerStore): } return ret - async def get_user_ip_and_agents(self, user): + async def get_user_ip_and_agents( + self, user: UserID + ) -> List[Dict[str, Union[str, int]]]: user_id = user.to_string() results = {} |