Skip to content

Commit

Permalink
fix base dir
Browse files Browse the repository at this point in the history
  • Loading branch information
tkknight committed Jan 2, 2024
1 parent 2a96e68 commit c5f6a23
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/src/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ def autolog(message: str) -> None:
release = release[: -len("+dirty")]

# src base directory
base_dir = Path(__file__).absolute().parent
base_dir = Path(__file__).absolute().parents[1]

# -- autoapi extension --------------------------------------------------------
# See https://sphinx-autoapi.readthedocs.io/en/latest/reference/config.html
Expand All @@ -131,7 +131,7 @@ def autolog(message: str) -> None:
autoapi_python_class_content = "both"
autoapi_keep_files = True

autolog(f"[autoapi] {root_dir = }")
autolog(f"[autoapi] {root_dir = }")
autolog(f"[autoapi] {autoapi_dirs = }")
autolog(f"[autoapi] {autoapi_ignore = }")
autolog(f"[autoapi] {autoapi_root = }")
Expand Down

0 comments on commit c5f6a23

Please sign in to comment.