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