Files
klangkiste/box2/hardware/base_buttons.py
T
2026-01-13 19:44:02 +00:00

11 lines
193 B
Python

"""Base button interface."""
from __future__ import annotations
from typing import Protocol
class BaseButtons(Protocol):
def poll(self) -> str | None:
raise NotImplementedError