from abc import ABC, abstractmethod class VariableStackABC(ABC): @abstractmethod def __init__(self): pass