8 lines
117 B
Python
8 lines
117 B
Python
from abc import ABC, abstractmethod
|
|
|
|
|
|
class VariableStackABC(ABC):
|
|
|
|
@abstractmethod
|
|
def __init__(self): pass
|