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 94cb8ae commit 8ca2a36
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion verified_cogen/runners/parsers/identParser.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ class IdentParser(Parser):
def __init__(
self,
):
super().__init__()
pass

def parse(self, text: str) -> str:
return text
2 changes: 1 addition & 1 deletion verified_cogen/runners/parsers/jsonParser.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ class JsonParser(Parser):
def __init__(
self,
):
super().__init__()
pass

def parse(self, text: str) -> str:
return json.loads(text)["code"].replace("\\n", "\n")

0 comments on commit 8ca2a36

Please sign in to comment.