Open
Description
Summary
Is there any reason why some functions in pyplot.py
use *args
and **kwargs
as their only parameters (e.g. show, figlegend, or savefig) and therefore have untyped parameters?
Proposed fix
Specify the actual signature or type parameters with Unpack[TypedDict] and Unpack[tuple] (however, parameter names are lost here)