From a0f55ba70914985e3179bda154b8ed64b1370e89 Mon Sep 17 00:00:00 2001 From: valentimarco Date: Sun, 23 Jun 2024 14:09:34 +0200 Subject: [PATCH] refactor(auto-gen-api): change path --- gen_pages.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gen_pages.py b/gen_pages.py index c95a004bc..f7914252f 100644 --- a/gen_pages.py +++ b/gen_pages.py @@ -26,7 +26,7 @@ module_path = path.relative_to(core_code_dir).with_suffix("") doc_path = path.relative_to(core_code_dir).with_suffix(".md") - full_doc_path = Path("technical/API_Documentation", doc_path) + full_doc_path = Path("API_Documentation", doc_path) parts = tuple(module_path.parts) @@ -46,7 +46,7 @@ mkdocs_gen_files.set_edit_path(full_doc_path, path) -with mkdocs_gen_files.open("technical/API_Documentation/SUMMARY.md", "w") as nav_file: # +with mkdocs_gen_files.open("API_Documentation/SUMMARY.md", "w") as nav_file: # if os.path.exists(core_code_dir): nav_file.writelines(nav.build_literate_nav()) # else: