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
This is likely because __all__ is out-of-date with the actual imports. I haven't tested other sub-packages, but it might be worth looking at these.
P.S. I'm not a big fan of __all__ and star imports in particular, the main issue is that the existence of __all__ gives rise to two public APIs which may diverge (as it has in this case).
The text was updated successfully, but these errors were encountered:
For example:
Throws an error:
This is likely because
__all__
is out-of-date with the actual imports. I haven't tested other sub-packages, but it might be worth looking at these.P.S. I'm not a big fan of
__all__
and star imports in particular, the main issue is that the existence of__all__
gives rise to two public APIs which may diverge (as it has in this case).The text was updated successfully, but these errors were encountered: