From 221fc4fcee87693241735910bca6a632e6b1c9fd Mon Sep 17 00:00:00 2001 From: cloudwithax Date: Tue, 2 Nov 2021 21:16:44 -0400 Subject: [PATCH] had to add absolute path so it shows up right --- docs/conf.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 1c0391d..481648a 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -10,9 +10,9 @@ # add these directories to sys.path here. If the directory is relative to the # documentation root, use os.path.abspath to make it absolute, like shown here. # -# import os -# import sys -# sys.path.insert(0, os.path.abspath('.')) +import os +import sys +sys.path.insert(0, os.path.abspath('.')) # -- Project information -----------------------------------------------------