We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c577502 commit 0f8cf58Copy full SHA for 0f8cf58
docs/source/conf.py
@@ -10,18 +10,16 @@
10
# add these directories to sys.path here. If the directory is relative to the
11
# documentation root, use os.path.abspath to make it absolute, like shown here.
12
#
13
-# import os
14
-# import sys
15
-# sys.path.insert(0, os.path.abspath('.'))
+from os.path import dirname, join, abspath
+import sphinx_rtd_theme
+import os
16
+import sys
17
+sys.path.insert(0, os.path.abspath('../..'))
18
19
20
# -- Project information -----------------------------------------------------
21
22
-import sphinx_rtd_theme
-from os.path import dirname, join, abspath
23
-
24
25
def read(rel_path: str) -> str:
26
here = abspath(dirname(__file__))
27
with open(join(here, rel_path)) as fp:
0 commit comments