Skip to content

Commit 83b326e

Browse files
committed
v0.1.35 fixed package local import once more
1 parent 4628c2d commit 83b326e

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

IceCreamSwapWeb3/Multicall.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111

1212
from .AddressCalculator import calculate_create_address
1313
from .FastChecksumAddress import to_checksum_address
14-
from .Web3Advanced import Web3Advanced
1514

1615
# load multicall abi
1716
with files("IceCreamSwapWeb3").joinpath("./abi/Multicall.abi").open('r') as f:
@@ -44,7 +43,7 @@ def register_multicall_contract(cls, chain_id: int, contract_address: str):
4443

4544
def __init__(
4645
self,
47-
w3: Web3Advanced
46+
w3: "Web3Advanced"
4847
):
4948
self.w3 = w3
5049
self.chain_id = self.w3.eth.chain_id

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from setuptools import setup, find_packages
22

3-
VERSION = '0.1.34'
3+
VERSION = '0.1.35'
44
DESCRIPTION = 'IceCreamSwap Web3.py wrapper'
55
LONG_DESCRIPTION = 'IceCreamSwap Web3.py wrapper with automatic retries, multicall and other advanced functionality'
66

0 commit comments

Comments
 (0)