diff --git a/ufpy/ustack.py b/ufpy/ustack.py index 6cbd607..5bf1422 100644 --- a/ufpy/ustack.py +++ b/ufpy/ustack.py @@ -20,11 +20,6 @@ def __init__(self, __list: list[VT] = list()) -> UStack: def pop(self) -> VT: """Return and remove top element.""" return self.__list.pop() - - @property - def top(self) -> VT: - """Top element of stack.""" - return self.top() def top(self) -> VT: """Gets top element of stack."""