Skip to content

Commit d8f7ccf

Browse files
committed
fix: Tuple -> Iterable
1 parent cfe4f21 commit d8f7ccf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

web3/_utils/method_formatters.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1187,7 +1187,7 @@ def filter_wrapper(
11871187

11881188
@to_tuple
11891189
def apply_module_to_formatters(
1190-
formatters: Tuple[Callable[..., TReturn]],
1190+
formatters: Iterable[Callable[..., TReturn]],
11911191
module: "Module",
11921192
method_name: Union[RPCEndpoint, Callable[..., RPCEndpoint]],
11931193
) -> Iterable[Callable[..., TReturn]]:

0 commit comments

Comments
 (0)