Remove empty __init__ methods from classes with 0 parents (#8907)

This commit is contained in:
Nikita Sobolev
2022-10-16 14:47:47 +03:00
committed by GitHub
parent 208c09044c
commit 3e828bd307
19 changed files with 0 additions and 21 deletions
-1
View File
@@ -20,7 +20,6 @@ class ThreadedTaskDispatcher:
lock: Lock = ...
queue_cv: Condition = ...
thread_exit_cv: Condition = ...
def __init__(self) -> None: ...
def start_new_thread(self, target: Any, args: Any) -> None: ...
def handler_thread(self, thread_no: int) -> None: ...
def set_thread_count(self, count: int) -> None: ...
-1
View File
@@ -10,7 +10,6 @@ class _triggerbase:
kind: str | None = ...
lock: Lock = ...
thunks: Callable[[None], None] = ...
def __init__(self) -> None: ...
def readable(self) -> Literal[True]: ...
def writable(self) -> Literal[False]: ...
def handle_connect(self) -> None: ...