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
{{ message }}
This repository was archived by the owner on Jun 10, 2020. It is now read-only.
MAINT: move __getattr__ to the top of __init__.pyi (#62)
We have a
```
def __getattr__(name: str) -> Any: ...
```
since not everything is typed yet. It was originally at the bottom of
the __init__.pyi file, but has since ended up not at the end because
it's hard to remember to put your code above it. Since it makes sense
to have it somewhere more noticeable than the middle of the file, put
it at the top instead.
0 commit comments