Skip to content

Commit b573cd9

Browse files
committed
fix: use correct is_exported approach
1 parent 9bab691 commit b573cd9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

quartodoc/builder/blueprint.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def _auto_package(mod: dc.Module) -> list[Section]:
6767
external_alias
6868
or member.is_module
6969
or name.startswith("__")
70-
or (has_all and not mod.is_exported(member))
70+
or (has_all and not member.is_exported)
7171
):
7272
continue
7373

0 commit comments

Comments
 (0)