diff options
author | David Robertson <davidr@element.io> | 2022-05-06 13:35:20 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-06 12:35:20 +0000 |
commit | 2607b3e1816341b3b8534077bd5d3a4daf3a3d15 (patch) | |
tree | 65a060f414530b98f649bed759a50cfc165bbd22 /synapse/config | |
parent | Add the `notify_appservices_from_worker` configuration option (superseding `n... (diff) | |
download | synapse-2607b3e1816341b3b8534077bd5d3a4daf3a3d15.tar.xz |
Update mypy to 0.950 and fix complaints (#12650)
Diffstat (limited to 'synapse/config')
-rw-r--r-- | synapse/config/appservice.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/synapse/config/appservice.py b/synapse/config/appservice.py index b13cc6bb6e..24498e7944 100644 --- a/synapse/config/appservice.py +++ b/synapse/config/appservice.py @@ -55,7 +55,8 @@ def load_appservices( ) -> List[ApplicationService]: """Returns a list of Application Services from the config files.""" if not isinstance(config_files, list): - logger.warning("Expected %s to be a list of AS config files.", config_files) + # type-ignore: this function gets arbitrary json value; we do use this path. + logger.warning("Expected %s to be a list of AS config files.", config_files) # type: ignore[unreachable] return [] # Dicts of value -> filename |