Open
Description
Our current type for Resolver
is Callable[..., Any]
, catching any arguments and relasing anything.
This is because its currently impossible to tpe Callable
that accepts *args
or **kwagrs
.
This issue is [known to MyPy authors](python/typing#264 but a the time of writing no solution is available.
This is related to #79