You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Cloup currently uses overloading (and a lot of ugly signature replication) to work around mypy limitations
These are a couple of relevant MyPy issues that when solved may improve the situation:
Cloup currently uses overloading (and a lot of ugly signature replication) to work around mypy limitations
These are a couple of relevant MyPy issues that when solved may improve the situation:
Unable to specify a default value for a generic parameter python/mypy#3737
This would make overloading unneded
Allow using TypedDict for more precise typing of **kwds python/mypy#4441
This would allow me to avoid replication of kwargs annotations
The text was updated successfully, but these errors were encountered: