diff options
author | Erik Johnston <erik@matrix.org> | 2019-12-12 15:21:12 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2019-12-12 15:21:12 +0000 |
commit | 495005360cd37009818ad4214a5462c3dd0b15a6 (patch) | |
tree | 4028a737f4294313814469b5798ed7cc9f81813c /synapse/config/server.py | |
parent | Newsfile (diff) | |
download | synapse-495005360cd37009818ad4214a5462c3dd0b15a6.tar.xz |
Bump version of mypy
Diffstat (limited to 'synapse/config/server.py')
-rw-r--r-- | synapse/config/server.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/config/server.py b/synapse/config/server.py index a4bef00936..50af858c76 100644 --- a/synapse/config/server.py +++ b/synapse/config/server.py @@ -200,7 +200,7 @@ class ServerConfig(Config): self.admin_contact = config.get("admin_contact", None) # FIXME: federation_domain_whitelist needs sytests - self.federation_domain_whitelist = None + self.federation_domain_whitelist = None # type: Optional[dict] federation_domain_whitelist = config.get("federation_domain_whitelist", None) if federation_domain_whitelist is not None: |