Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Explicitly re-export all the names in __init__
mypy is pretty strict about "if you say py.typed, you better mean it," including re-export requirements. I was running some external code that uses tricycle with `mypy --strict`, and it was complaining that the names in tricycle weren't found (when trying to reference them like `import tricycle; tricycle.Foo`) and then that they weren't explicitly re-exported (when referencing them as `from tricycle import Foo`) With this change, there are no complaints!
- Loading branch information