summary refs log tree commit diff
path: root/synapse/config/tls.py
diff options
context:
space:
mode:
authorPatrick Cloke <clokep@users.noreply.github.com>2021-12-09 11:15:46 -0500
committerGitHub <noreply@github.com>2021-12-09 16:15:46 +0000
commit0cc3bf97b4399234cf20f52ae4c09d03661225ff (patch)
treebdaed7ffc6750e25962a30242ac1c30b0883257e /synapse/config/tls.py
parentUse HTTPStatus constants in place of literals in `synapse.http` (#11543) (diff)
downloadsynapse-0cc3bf97b4399234cf20f52ae4c09d03661225ff.tar.xz
Additional type hints for the config module, part 2. (#11480)
Diffstat (limited to '')
-rw-r--r--synapse/config/tls.py2
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.
         """