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 b44e129 commit 94cb8ae
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
4 changes: 3 additions & 1 deletion verified_cogen/runners/parsers/identParser.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@


class IdentParser(Parser):
def __init__(self):
def __init__(
self,
):
super().__init__()

def parse(self, text: str) -> str:
Expand Down
4 changes: 3 additions & 1 deletion verified_cogen/runners/parsers/jsonParser.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@


class JsonParser(Parser):
def __init__(self):
def __init__(
self,
):
super().__init__()

def parse(self, text: str) -> str:
Expand Down
4 changes: 3 additions & 1 deletion verified_cogen/runners/validating.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ def __init__(
language: Language,
log_tries: Optional[pathlib.Path] = None,
):
super().__init__(wrapping.llm, wrapping.logger, wrapping.verifier, log_tries)
super().__init__(
wrapping.llm, wrapping.logger, wrapping.verifier, log_tries=log_tries
)
self.wrapped_runner = wrapping
self.language = language

Expand Down

0 comments on commit 94cb8ae

Please sign in to comment.