From c25430a9ca3be1b55a3e686f2b768f47180a33ef Mon Sep 17 00:00:00 2001 From: Charles Cooper Date: Wed, 18 Sep 2024 08:28:06 -0400 Subject: [PATCH] fix lint --- tests/functional/builtins/codegen/test_create_functions.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/functional/builtins/codegen/test_create_functions.py b/tests/functional/builtins/codegen/test_create_functions.py index 77e96970a1..e7a80fcedf 100644 --- a/tests/functional/builtins/codegen/test_create_functions.py +++ b/tests/functional/builtins/codegen/test_create_functions.py @@ -862,7 +862,8 @@ def deploy_from_calldata(s: Bytes[1024], arg: uint256, salt: bytes32) -> address assert env.get_code(res) == runtime -# test raw_create with all combinations of value and revert_on_failure kwargs (including not present at all) +# test raw_create with all combinations of value and revert_on_failure kwargs +# (including not present at all) # additionally parametrize whether the constructor reverts or not @pytest.mark.parametrize("constructor_reverts", [True, False]) @pytest.mark.parametrize("use_value", [True, False])