Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
daejunpark committed Aug 8, 2023
1 parent e765930 commit 93fe621
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/halmos/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ def deploy_test(
deployed_hexcode: str,
sevm: SEVM,
args: Namespace,
libs: Dict = {}
libs: Dict = {},
) -> Exec:
this = mk_this()

Expand Down Expand Up @@ -250,7 +250,7 @@ def setup(
abi: List,
setup_info: FunctionInfo,
args: Namespace,
libs: Dict = {}
libs: Dict = {},
) -> Exec:
setup_start = timer()

Expand Down
4 changes: 1 addition & 3 deletions tests/test_halmos.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,7 @@ def test_main(cmd, expected_path, halmos_options):
[
["--root", "tests", "--contract", "SetupFailTest"],
],
ids=(
"SetupFailTest",
),
ids=("SetupFailTest"),
)
def test_main_fail(cmd, halmos_options):
actual = asdict(_main(cmd + halmos_options.split()))
Expand Down

0 comments on commit 93fe621

Please sign in to comment.