summary refs log tree commit diff
path: root/synapse/types.py
diff options
context:
space:
mode:
authorRichard van der Hoff <richard@matrix.org>2020-07-09 11:06:52 +0100
committerRichard van der Hoff <richard@matrix.org>2020-07-09 11:06:52 +0100
commitcc86fbc9addc65b3fcaede370190bce5451f9aa1 (patch)
tree1fcb0e700a8be2202b85820fb990011ecd558897 /synapse/types.py
parentMerge branch 'release-v1.15.2' into matrix-org-hotfixes (diff)
parentGenerate real events when we reject invites (#7804) (diff)
downloadsynapse-cc86fbc9addc65b3fcaede370190bce5451f9aa1.tar.xz
Merge branch 'develop' into matrix-org-hotfixes
Diffstat (limited to 'synapse/types.py')
-rw-r--r--synapse/types.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/types.py b/synapse/types.py

index acf60baddc..238b938064 100644 --- a/synapse/types.py +++ b/synapse/types.py
@@ -29,7 +29,7 @@ from synapse.api.errors import Codes, SynapseError if sys.version_info[:3] >= (3, 6, 0): from typing import Collection else: - from typing import Sized, Iterable, Container + from typing import Container, Iterable, Sized T_co = TypeVar("T_co", covariant=True)