We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c085ca2 commit 4288b3eCopy full SHA for 4288b3e
web3/types.py
@@ -69,8 +69,8 @@
69
Timestamp = NewType("Timestamp", int)
70
Wei = NewType("Wei", int)
71
Gwei = NewType("Gwei", int)
72
-RequestFormatter = Callable[..., TReturn]
73
-RequestFormatters = Dict[RPCEndpoint, RequestFormatter[Any]]
+Formatter = Callable[TParams, TReturn]
+Formatters = Dict[RPCEndpoint, Formatter[Any]]
74
ResponseFormatter = Callable[["RPCResponse"], TReturn]
75
ResponseFormatters = Dict[RPCEndpoint, ResponseFormatter[Any]]
76
0 commit comments