diff --git a/verified_cogen/runners/parsers/parser.py b/verified_cogen/runners/parsers/parser.py index d58c7eb..b57f078 100644 --- a/verified_cogen/runners/parsers/parser.py +++ b/verified_cogen/runners/parsers/parser.py @@ -5,11 +5,6 @@ class Parser: _instance = None - def __new__(cls, *args: list[Any], **kwargs: dict[str, Any]): - if not isinstance(cls._instance, cls): - cls._instance = super().__new__(cls, *args, **kwargs) - return cls._instance - @abstractmethod def __init__(self, *args: list[Any], **kwargs: dict[str, Any]): ...