Files
onepilot/frogpilot/third_party/reactivex/abc/startable.py
T
2026-02-13 00:21:26 -07:00

15 lines
266 B
Python

from abc import ABC, abstractmethod
class StartableBase(ABC):
"""Abstract base class for Thread- and Process-like objects."""
__slots__ = ()
@abstractmethod
def start(self) -> None:
raise NotImplementedError
__all__ = ["StartableBase"]