diff --git a/src/halmos/__main__.py b/src/halmos/__main__.py index b08c5338..7a95b58b 100644 --- a/src/halmos/__main__.py +++ b/src/halmos/__main__.py @@ -184,7 +184,7 @@ def deploy_test( deployed_hexcode: str, sevm: SEVM, args: Namespace, - libs: Dict = {} + libs: Dict = {}, ) -> Exec: this = mk_this() @@ -250,7 +250,7 @@ def setup( abi: List, setup_info: FunctionInfo, args: Namespace, - libs: Dict = {} + libs: Dict = {}, ) -> Exec: setup_start = timer() diff --git a/tests/test_halmos.py b/tests/test_halmos.py index 24e79499..5c344eaa 100644 --- a/tests/test_halmos.py +++ b/tests/test_halmos.py @@ -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()))