Skip to content

Commit

Permalink
Fix build path (#82)
Browse files Browse the repository at this point in the history
  • Loading branch information
r0x0d authored Dec 27, 2024
1 parent 717c5f2 commit f64a763
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
# -- Project information -----------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information

import os
import sys

project = "command-line-assistant"
Expand Down Expand Up @@ -49,7 +50,7 @@

default_role = "code"

sys.path.append("../")
sys.path.insert(0, os.path.abspath("../.."))

# -- Options for HTML output -------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
Expand Down

0 comments on commit f64a763

Please sign in to comment.