Skip to content

Commit

Permalink
fix main
Browse files Browse the repository at this point in the history
  • Loading branch information
alex28sh committed Sep 24, 2024
1 parent 8ca2a36 commit 7643e52
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions verified_cogen/runners/parsers/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -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]): ...

Expand Down

0 comments on commit 7643e52

Please sign in to comment.