From 4ec244cd98bd3f9a4dbb772dade5ab08c5b89b99 Mon Sep 17 00:00:00 2001 From: Evan <163005762+evan-quest@users.noreply.github.com> Date: Tue, 3 Dec 2024 20:55:44 -0500 Subject: [PATCH] chore: add no type on ValueError --- src/ape_ethereum/provider.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ape_ethereum/provider.py b/src/ape_ethereum/provider.py index 67229db3ed..7fbb254f2d 100644 --- a/src/ape_ethereum/provider.py +++ b/src/ape_ethereum/provider.py @@ -32,7 +32,7 @@ try: from web3.exceptions import Web3RPCError except ImportError: - Web3RPCError = ValueError + Web3RPCError = ValueError # type: ignore from web3.gas_strategies.rpc import rpc_gas_price_strategy from web3.middleware.validation import MAX_EXTRADATA_LENGTH