Skip to content

Commit 0172d27

Browse files
committed
v0.1.40 Made tqdm optional again
1 parent 40564fe commit 0172d27

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

IceCreamSwapWeb3/Subsquid.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
import requests
44
from .FastChecksumAddress import to_checksum_address
55
from hexbytes import HexBytes
6-
from tqdm import tqdm
76
from web3.types import FilterParams, LogReceipt
87

98

@@ -38,7 +37,7 @@ def get_filter(
3837
chain_id: int,
3938
filter_params: FilterParams,
4039
partial_allowed=False,
41-
p_bar: tqdm = None
40+
p_bar = None
4241
) -> tuple[int, list[LogReceipt]]:
4342
endpoints = get_endpoints()
4443
if chain_id not in endpoints:

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.39'
3+
VERSION = '0.1.40'
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)