We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 828003b commit 9d26a2eCopy full SHA for 9d26a2e
docs/source/conf.py
@@ -7,8 +7,6 @@
7
import sys
8
from pathlib import Path
9
10
-import hyperactive
11
-
12
# -- Path setup --------------------------------------------------------------
13
14
# If extensions (or modules to document with autodoc) are in another directory,
@@ -17,8 +15,9 @@
17
15
18
16
ON_READTHEDOCS = os.environ.get("READTHEDOCS") == "True"
19
if not ON_READTHEDOCS:
20
- sys.path.insert(0, os.path.abspath("../.."))
+ sys.path.insert(0, os.path.abspath("../../src"))
21
+import hyperactive # noqa: E402 # must be after sys.path modification
22
23
# -- Extract metadata from pyproject.toml ------------------------------------
24
# This allows documentation to stay in sync with pyproject.toml automatically
0 commit comments