Files
onepilot/starpilot/third_party/reactivex/abc/startable.py
T
firestar5683 3d8af2361e Rename
2026-03-27 18:05:44 -05: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"]