From 9117c552c6ae85acec8452961db0aac51119070b Mon Sep 17 00:00:00 2001 From: BobTheBuidler <70677534+BobTheBuidler@users.noreply.github.com> Date: Wed, 27 Sep 2023 17:59:35 -0400 Subject: [PATCH] fix: broken import (#88) --- multicall/call.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/multicall/call.py b/multicall/call.py index c431807..ccc6e5b 100644 --- a/multicall/call.py +++ b/multicall/call.py @@ -6,10 +6,10 @@ from eth_utils import to_checksum_address from web3 import Web3 -from multicall import Signature, _get_signature from multicall.constants import Network, w3 from multicall.exceptions import StateOverrideNotSupported from multicall.loggers import setup_logger +from multicall.signature import Signature, _get_signature from multicall.utils import (_get_semaphore, chain_id, get_async_w3, run_in_subprocess, state_override_supported)