diff options
author | David Robertson <davidr@element.io> | 2021-10-11 17:42:10 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-11 17:42:10 +0100 |
commit | e0f11ae4a5688a0521f20f36e440c87cfccfd69a (patch) | |
tree | 8b10d1d2c36fae9d12adba20e544164206c9adcc /synapse/push/__init__.py | |
parent | Include the requirements for [mypy,lint] in [dev] (#11034) (diff) | |
download | synapse-e0f11ae4a5688a0521f20f36e440c87cfccfd69a.tar.xz |
disallow-untyped-defs for synapse.push (#11023)
Diffstat (limited to 'synapse/push/__init__.py')
-rw-r--r-- | synapse/push/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/push/__init__.py b/synapse/push/__init__.py index 2c23afe8e3..820f6f3f7e 100644 --- a/synapse/push/__init__.py +++ b/synapse/push/__init__.py @@ -94,7 +94,7 @@ class Pusher(metaclass=abc.ABCMeta): self._start_processing() @abc.abstractmethod - def _start_processing(self): + def _start_processing(self) -> None: """Start processing push notifications.""" raise NotImplementedError() |