Skip to content

Commit

Permalink
docs: fix error in conf.py
Browse files Browse the repository at this point in the history
  • Loading branch information
mdtanker committed May 7, 2024
1 parent 7d1fa5f commit 2a7824d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
from __future__ import annotations

import os
import sys
from pathlib import Path

import invert4geom

sys.path.insert(0, Path.resolve("../src"))
sys.path.insert(0, os.path.abspath("../src")) # noqa: PTH100

project = "invert4geom"
copyright = "2023, Matt Tankersley"
Expand Down

0 comments on commit 2a7824d

Please sign in to comment.