Skip to content

Commit

Permalink
Merge pull request #3 from canonical/readthedocs
Browse files Browse the repository at this point in the history
docs: set import path for requirements
  • Loading branch information
sergiusens committed Sep 17, 2021
2 parents 36110ac + af22292 commit 07ec1ba
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,12 @@
# documentation root, use os.path.abspath to make it absolute, like shown here.
#

import craft_store
import pathlib
import sys

sys.path.insert(0, str(pathlib.Path("..").absolute()))

import craft_store # noqa: E402


# -- Project information -----------------------------------------------------
Expand Down

0 comments on commit 07ec1ba

Please sign in to comment.