""" This is an abstract baseclass for the controls of snake. """ from abc import ABC, abstractmethod class ControlsBase(ABC): @abstractmethod def handle_input(self, event): pass