docs: fix clan-core should be called clan.core

Consistent with the module name
This commit is contained in:
Johannes Kirschbauer
2025-05-20 18:33:40 +02:00
parent c34b693a64
commit a9ed972834
5 changed files with 6 additions and 6 deletions

View File

@@ -297,7 +297,7 @@ def produce_clan_core_docs() -> None:
core_outputs: dict[str, str] = {}
with CLAN_CORE_DOCS.open() as f:
options: dict[str, dict[str, Any]] = json.load(f)
module_name = "clan-core"
module_name = "clan.core"
transform = {n.replace("clan.core.", ""): v for n, v in options.items()}
split = split_options_by_root(transform)