diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2021-01-04 10:04:50 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-04 10:04:50 -0500 |
commit | 1c9a8505623475ae28067e6f0e8e74ede70c728a (patch) | |
tree | 06b2b63dd07b69fb0ff7e99c2c28c1b57093ac37 /synapse/crypto/context_factory.py | |
parent | Add link to Synapse dev room to the relevant README section (#9002) (diff) | |
download | synapse-1c9a8505623475ae28067e6f0e8e74ede70c728a.tar.xz |
Add type hints to the crypto module. (#8999)
Diffstat (limited to 'synapse/crypto/context_factory.py')
-rw-r--r-- | synapse/crypto/context_factory.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/crypto/context_factory.py b/synapse/crypto/context_factory.py index 57fd426e87..74b67b230a 100644 --- a/synapse/crypto/context_factory.py +++ b/synapse/crypto/context_factory.py @@ -227,7 +227,7 @@ class ConnectionVerifier: # This code is based on twisted.internet.ssl.ClientTLSOptions. - def __init__(self, hostname: bytes, verify_certs): + def __init__(self, hostname: bytes, verify_certs: bool): self._verify_certs = verify_certs _decoded = hostname.decode("ascii") |