from stack import Stack, StackType class StackDeep(Stack): def __init__(self, name: str): Stack.__init__(self, StackType.Deep, name)