From 2607b3e1816341b3b8534077bd5d3a4daf3a3d15 Mon Sep 17 00:00:00 2001 From: David Robertson Date: Fri, 6 May 2022 13:35:20 +0100 Subject: Update mypy to 0.950 and fix complaints (#12650) --- synapse/appservice/api.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'synapse/appservice') diff --git a/synapse/appservice/api.py b/synapse/appservice/api.py index adc6b074da..d19f8dd996 100644 --- a/synapse/appservice/api.py +++ b/synapse/appservice/api.py @@ -17,6 +17,7 @@ import urllib.parse from typing import TYPE_CHECKING, Dict, Iterable, List, Optional, Tuple from prometheus_client import Counter +from typing_extensions import TypeGuard from synapse.api.constants import EventTypes, Membership, ThirdPartyEntityKind from synapse.api.errors import CodeMessageException @@ -66,7 +67,7 @@ def _is_valid_3pe_metadata(info: JsonDict) -> bool: return True -def _is_valid_3pe_result(r: JsonDict, field: str) -> bool: +def _is_valid_3pe_result(r: object, field: str) -> TypeGuard[JsonDict]: if not isinstance(r, dict): return False -- cgit 1.5.1