diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2020-11-25 13:30:47 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-25 13:30:47 -0500 |
commit | 968939bdacc66be91aeba440a6b2ae7bc84731f1 (patch) | |
tree | adc3e791cb2ceff89f1e73bfdfbbb782286f9a8d /mypy.ini | |
parent | Support trying multiple localparts for OpenID Connect. (#8801) (diff) | |
download | synapse-968939bdacc66be91aeba440a6b2ae7bc84731f1.tar.xz |
Add additional type hints to HTTP client. (#8812)
This also removes some duplicated code between the simple HTTP client and matrix federation client.
Diffstat (limited to 'mypy.ini')
-rw-r--r-- | mypy.ini | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mypy.ini b/mypy.ini index 3e42235ac1..a5503abe26 100644 --- a/mypy.ini +++ b/mypy.ini @@ -45,6 +45,7 @@ files = synapse/handlers/saml_handler.py, synapse/handlers/sync.py, synapse/handlers/ui_auth, + synapse/http/client.py, synapse/http/federation/matrix_federation_agent.py, synapse/http/federation/well_known_resolver.py, synapse/http/matrixfederationclient.py, @@ -109,7 +110,7 @@ ignore_missing_imports = True [mypy-opentracing] ignore_missing_imports = True -[mypy-OpenSSL] +[mypy-OpenSSL.*] ignore_missing_imports = True [mypy-netaddr] |