From 14c0421a515e52be646c7b92cf22953d77d39584 Mon Sep 17 00:00:00 2001 From: Mario Vega Date: Thu, 19 Dec 2024 00:08:44 +0000 Subject: [PATCH] fix(tools): mypy --- src/ethereum_test_tools/utility/generators.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ethereum_test_tools/utility/generators.py b/src/ethereum_test_tools/utility/generators.py index c65cbc242c..9ae684c5c8 100644 --- a/src/ethereum_test_tools/utility/generators.py +++ b/src/ethereum_test_tools/utility/generators.py @@ -85,7 +85,7 @@ def generate_system_contract_deploy_test( del tx_json["gas"] if "protected" not in tx_json: tx_json["protected"] = False - deploy_tx = Transaction.model_validate(tx_json).with_signature_and_sender() + deploy_tx = Transaction.model_validate(tx_json).with_signature_and_sender() # type: ignore gas_price = deploy_tx.gas_price assert gas_price is not None deployer_required_balance = deploy_tx.gas_limit * gas_price