Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Export renderers from
pyinstrument.renderers
Type checkers don't like it when you use symbols that are not exported in that module. Putting the renderers in `__all__` will export them here so imports like this one pass mypy: from pyinstrument.renderers import HTMLRenderer Currently one must specify the specific module that owns the renderer to import it. from pyinstrument.renderers.html import HTMLRenderer
- Loading branch information