Skip to content

Commit 29758f5

Browse files
committed
chore: fix line length err
1 parent 86ae1be commit 29758f5

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

web3/module.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -205,8 +205,10 @@ def __init__(self, w3: Union["AsyncWeb3", "Web3"]) -> None:
205205
self.retrieve_caller_fn = retrieve_async_method_call_fn(w3, self)
206206
else:
207207
self.retrieve_caller_fn = retrieve_blocking_method_call_fn(w3, self)
208-
self.retrieve_request_information = retrieve_request_information_for_batching( # type: ignore [call-overload]
209-
w3, self
208+
self.retrieve_request_information = (
209+
retrieve_request_information_for_batching( # type: ignore [call-overload]
210+
w3, self
211+
)
210212
)
211213
self.w3 = w3
212214

0 commit comments

Comments
 (0)