import abc class Screen(abc.ABC): @abc.abstractmethod def refresh(self) -> None: pass @abc.abstractmethod def oneframe(self) -> None: pass