diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2021-12-09 11:15:46 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-09 16:15:46 +0000 |
commit | 0cc3bf97b4399234cf20f52ae4c09d03661225ff (patch) | |
tree | bdaed7ffc6750e25962a30242ac1c30b0883257e /synapse/config/tls.py | |
parent | Use HTTPStatus constants in place of literals in `synapse.http` (#11543) (diff) | |
download | synapse-0cc3bf97b4399234cf20f52ae4c09d03661225ff.tar.xz |
Additional type hints for the config module, part 2. (#11480)
Diffstat (limited to '')
-rw-r--r-- | synapse/config/tls.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/config/tls.py b/synapse/config/tls.py index 4ca111618f..ffb316e4c0 100644 --- a/synapse/config/tls.py +++ b/synapse/config/tls.py @@ -132,7 +132,7 @@ class TlsConfig(Config): self.tls_certificate: Optional[crypto.X509] = None self.tls_private_key: Optional[crypto.PKey] = None - def read_certificate_from_disk(self): + def read_certificate_from_disk(self) -> None: """ Read the certificates and private key from disk. """ |