diff options
author | Jason Robinson <jasonr@matrix.org> | 2021-01-09 22:00:04 +0200 |
---|---|---|
committer | Jason Robinson <jasonr@matrix.org> | 2021-01-09 22:00:04 +0200 |
commit | 2eb421b606c1ab3c720f510abbd6dc9ad25c0673 (patch) | |
tree | f69dde7b789a3c8bfe06a12a46792c92ffa05a1d /stubs/frozendict.pyi | |
parent | Implement clearing cache after deleting forward extremities (diff) | |
parent | Keycloak mapping_provider example (#9037) (#9057) (diff) | |
download | synapse-2eb421b606c1ab3c720f510abbd6dc9ad25c0673.tar.xz |
Merge branch 'develop' into jaywink/admin-forward-extremities
Diffstat (limited to 'stubs/frozendict.pyi')
-rw-r--r-- | stubs/frozendict.pyi | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/stubs/frozendict.pyi b/stubs/frozendict.pyi index 3f3af59f26..0368ba4703 100644 --- a/stubs/frozendict.pyi +++ b/stubs/frozendict.pyi @@ -15,16 +15,7 @@ # Stub for frozendict. -from typing import ( - Any, - Hashable, - Iterable, - Iterator, - Mapping, - overload, - Tuple, - TypeVar, -) +from typing import Any, Hashable, Iterable, Iterator, Mapping, Tuple, TypeVar, overload _KT = TypeVar("_KT", bound=Hashable) # Key type. _VT = TypeVar("_VT") # Value type. |