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 ba0d358 commit b377d20Copy full SHA for b377d20
web3/types.py
@@ -66,8 +66,8 @@
66
Timestamp = NewType("Timestamp", int)
67
Wei = NewType("Wei", int)
68
Gwei = NewType("Gwei", int)
69
-RequestFormatter = Callable[..., TReturn]
70
-RequestFormatters = Dict[RPCEndpoint, RequestFormatter[Any]]
+Formatter = Callable[TParams, TReturn]
+Formatters = Dict[RPCEndpoint, Formatter[Any]]
71
ResponseFormatter = Callable[["RPCResponse"], TReturn]
72
ResponseFormatters = Dict[RPCEndpoint, ResponseFormatter[Any]]
73
0 commit comments