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
T was moved into utils and imported from there to prevent sphinx from importing it for every single file for the docs. It would be preferable to have T = TypeVar("T") defined in each file that uses it as this is a common use case. We need to investigate with sphinx and see if we can resolve it.
The text was updated successfully, but these errors were encountered:
In #700 we now make it a public member of a private module, and use it within that module, then sphinx ignore it. The only exception are public things like SignalDatatypeT which have a non-obvious bound
T was moved into utils and imported from there to prevent sphinx from importing it for every single file for the docs. It would be preferable to have
T = TypeVar("T")
defined in each file that uses it as this is a common use case. We need to investigate with sphinx and see if we can resolve it.The text was updated successfully, but these errors were encountered: