Skip to content

Commit 4288b3e

Browse files
committed
Update types.py
1 parent c085ca2 commit 4288b3e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

web3/types.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@
6969
Timestamp = NewType("Timestamp", int)
7070
Wei = NewType("Wei", int)
7171
Gwei = NewType("Gwei", int)
72-
RequestFormatter = Callable[..., TReturn]
73-
RequestFormatters = Dict[RPCEndpoint, RequestFormatter[Any]]
72+
Formatter = Callable[TParams, TReturn]
73+
Formatters = Dict[RPCEndpoint, Formatter[Any]]
7474
ResponseFormatter = Callable[["RPCResponse"], TReturn]
7575
ResponseFormatters = Dict[RPCEndpoint, ResponseFormatter[Any]]
7676

0 commit comments

Comments
 (0)