Skip to content

Commit 0b7ec3c

Browse files
committed
fix: Tuple -> Iterable
1 parent a165091 commit 0b7ec3c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

web3/_utils/method_formatters.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1238,7 +1238,7 @@ def filter_wrapper(
12381238

12391239
@to_tuple
12401240
def apply_module_to_formatters(
1241-
formatters: Tuple[Callable[..., TReturn]],
1241+
formatters: Iterable[Callable[..., TReturn]],
12421242
module: "Module",
12431243
method_name: Union[RPCEndpoint, Callable[..., RPCEndpoint]],
12441244
) -> Iterable[Callable[..., TReturn]]:

0 commit comments

Comments
 (0)