Skip to content

Commit 16404c4

Browse files
MerricxStefanosChaliasos
authored andcommitted
Fix abstractmethod return
1 parent df75bf1 commit 16404c4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/zkregex_fuzzer/runner/python.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def match(self, input: str) -> tuple[bool, str]:
3737
raise RegexRunError(f"Error matching regex: {e}")
3838

3939
def save(self, path: str) -> str:
40-
return super().save(path)
40+
return ""
4141

4242
def clean(self) -> None:
43-
return super().clean()
43+
return None

0 commit comments

Comments
 (0)