mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-05-17 22:09:45 +08:00
Remove empty __init__ methods from classes with 0 parents (#8907)
This commit is contained in:
@@ -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: ...
|
||||
|
||||
@@ -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: ...
|
||||
|
||||
Reference in New Issue
Block a user