diff options
author | David Robertson <davidr@element.io> | 2021-10-08 14:49:41 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-08 14:49:41 +0100 |
commit | 797ee7812db28f6cf130d68e2d10911c826b0be5 (patch) | |
tree | 7dc5c31a4f18ebdcdcae21d9987f85bfd8892a45 /synapse/http | |
parent | Fix overwriting profile when making room public (#11003) (diff) | |
download | synapse-797ee7812db28f6cf130d68e2d10911c826b0be5.tar.xz |
Relax `ignore-missing-imports` for modules that have stubs now and update mypy (#11006)
Updating mypy past version 0.9 means that third-party stubs are no-longer distributed with typeshed. See http://mypy-lang.blogspot.com/2021/06/mypy-0900-released.html for details. We therefore pull in stub packages in setup.py Additionally, some modules that we were previously ignoring import failures for now have stubs. So let's use them. The rest of this change consists of fixups to make the newer mypy + stubs pass CI. Co-authored-by: Patrick Cloke <clokep@users.noreply.github.com>
Diffstat (limited to 'synapse/http')
-rw-r--r-- | synapse/http/client.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/http/client.py b/synapse/http/client.py index 5204c3d08c..b5a2d333a6 100644 --- a/synapse/http/client.py +++ b/synapse/http/client.py @@ -912,7 +912,7 @@ class InsecureInterceptableContextFactory(ssl.ContextFactory): def __init__(self): self._context = SSL.Context(SSL.SSLv23_METHOD) - self._context.set_verify(VERIFY_NONE, lambda *_: None) + self._context.set_verify(VERIFY_NONE, lambda *_: False) def getContext(self, hostname=None, port=None): return self._context |