Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork7.9k
Open
Labels
Description
Summary
Is there any reason why some functions inpyplot.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)