Skip to content

Commit

Permalink
feat(#287): hopefully fixed pdoc
Browse files Browse the repository at this point in the history
  • Loading branch information
lxgr-linux committed Jul 13, 2024
1 parent 2c51d7d commit a5851c6
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions util/pages.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,12 +122,11 @@ def create_documentation() -> None:
"documentation". This function will call pdoc to create the documentation for it.
"""
modules = [file for file in files if files[file]["type"] == "documentation"]
pdoc_path = "/home/runner/.local/bin/pdoc"

for module in modules:
print(f" -> {module}")
os.system(
f"{pdoc_path} --html {module} --output-dir \"/tmp/doc/\" --force")
f"pdoc --html {module} --output-dir \"/tmp/doc/\" --force")


def add_folder(folder: str, add_tmp_folder: bool = False) -> None:
Expand Down

0 comments on commit a5851c6

Please sign in to comment.