diff options
author | David Robertson <davidr@element.io> | 2022-08-15 11:32:30 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-15 11:32:30 +0100 |
commit | f383b9b3eceaa082d5ae690550fe41460b711779 (patch) | |
tree | 5049a893ce7ffb3a678fecd00c652fbc37725070 /synapse/app | |
parent | Update grafana dashboard (diff) | |
download | synapse-f383b9b3eceaa082d5ae690550fe41460b711779.tar.xz |
Update locked versions of mypy and mypy-zope (#13521)
Diffstat (limited to 'synapse/app')
-rw-r--r-- | synapse/app/_base.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/synapse/app/_base.py b/synapse/app/_base.py index 923891ae0d..55d135fa03 100644 --- a/synapse/app/_base.py +++ b/synapse/app/_base.py @@ -98,9 +98,7 @@ def register_sighup(func: Callable[P, None], *args: P.args, **kwargs: P.kwargs) func: Function to be called when sent a SIGHUP signal. *args, **kwargs: args and kwargs to be passed to the target function. """ - # This type-ignore should be redundant once we use a mypy release with - # https://github.com/python/mypy/pull/12668. - _sighup_callbacks.append((func, args, kwargs)) # type: ignore[arg-type] + _sighup_callbacks.append((func, args, kwargs)) def start_worker_reactor( |