Skip to content

Commit

Permalink
reformatting
Browse files Browse the repository at this point in the history
  • Loading branch information
tuturu-tech committed Jan 12, 2024
1 parent b7f2d9a commit c8d386f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test_generator/fuzzers/Echidna.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def _parse_call_object(self, call_dict: dict[Any, Any]) -> tuple[str, str]:
if entry_point.name == function_name:
slither_entry_point = entry_point

if 'slither_entry_point' not in locals():
if "slither_entry_point" not in locals():
handle_exit(
f"\n* Slither could not find the function `{function_name}` specified in the call object"
)
Expand Down
2 changes: 1 addition & 1 deletion test_generator/fuzzers/Medusa.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def _parse_call_object(self, call_dict: dict) -> tuple[str, str]:
if entry_point.name == function_name:
slither_entry_point = entry_point

if 'slither_entry_point' not in locals():
if "slither_entry_point" not in locals():
handle_exit(
f"\n* Slither could not find the function `{function_name}` specified in the call object"
)
Expand Down

0 comments on commit c8d386f

Please sign in to comment.