diff options
author | David Robertson <davidr@element.io> | 2022-09-30 16:37:48 +0100 |
---|---|---|
committer | David Robertson <davidr@element.io> | 2022-09-30 16:37:48 +0100 |
commit | 8e52cb0bce4c4e42a0f151f16e51529b7aba8f7d (patch) | |
tree | d774cbdb7c80fe6bfb9350809397c8d18bffa5ca /synapse/app | |
parent | Update mypy and mypy-zope (#13925) (diff) | |
download | synapse-8e52cb0bce4c4e42a0f151f16e51529b7aba8f7d.tar.xz |
Revert "Update mypy and mypy-zope (#13925)"
This reverts commit 6d543d6d9f56e39199b7e460d0081b02d61f12be.
Diffstat (limited to 'synapse/app')
-rw-r--r-- | synapse/app/_base.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/synapse/app/_base.py b/synapse/app/_base.py index 000912e86e..9a24bed0a0 100644 --- a/synapse/app/_base.py +++ b/synapse/app/_base.py @@ -98,7 +98,9 @@ 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. """ - _sighup_callbacks.append((func, args, kwargs)) + # 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] def start_worker_reactor( |