refactoring

This commit is contained in:
Maxim Devaev
2022-07-29 22:14:02 +03:00
parent 02fa3fa65d
commit caf1a89ec6
2 changed files with 7 additions and 3 deletions

View File

@@ -130,7 +130,8 @@ class BaseDeviceProcess(multiprocessing.Process): # pylint: disable=too-many-in
# =====
def _process_event(self, event: BaseEvent) -> Generator[bytes, None, None]: # pylint: disable=unused-argument
def _process_event(self, event: BaseEvent) -> Generator[bytes, None, None]:
_ = event
if self is not None: # XXX: Vulture and pylint hack
raise NotImplementedError()
yield