Skip to content

Commit 7ca9f66

Browse files
committed
dev: add __all__ to top-level module
1 parent a78311d commit 7ca9f66

File tree

1 file changed

+17
-7
lines changed

1 file changed

+17
-7
lines changed

quartodoc/__init__.py

Lines changed: 17 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,25 @@
1+
"""quartodoc is a package for building delightful python API documentation.
2+
"""
3+
14
# flake8: noqa
25

3-
from .autosummary import (
4-
get_function,
5-
get_object,
6-
Builder,
7-
BuilderPkgdown,
8-
BuilderSinglePage,
9-
)
6+
from .autosummary import get_function, get_object, Builder
107
from .renderers import MdRenderer
118
from .inventory import convert_inventory, create_inventory
129
from .ast import preview
1310
from .builder.blueprint import blueprint
1411
from .builder.collect import collect
1512
from .layout import Auto
13+
14+
__all__ = (
15+
"Auto" "blueprint",
16+
"collect",
17+
"convert_inventory",
18+
"create_inventory",
19+
"get_object",
20+
"preview",
21+
"Builder",
22+
"BuilderPkgdown",
23+
"BuilderSinglePage",
24+
"MdRenderer",
25+
)

0 commit comments

Comments
 (0)