Skip to content

Commit

Permalink
fix inspect from sphinx
Browse files Browse the repository at this point in the history
  • Loading branch information
piskunow committed Nov 25, 2023
1 parent bc2a362 commit 10313bd
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@
import os
import sys

from sphinx.util import inspect as sphinx_inspect


project = "KPM Tools"
author = "Pablo Piskunow"
Expand Down Expand Up @@ -63,7 +61,7 @@ def linkcode_resolve(domain, info):
return None

# Get the source file path of the module
filename = sphinx_inspect.getsourcefile(module)
filename = inspect.getsourcefile(module)
if filename is None:
return None

Expand Down

0 comments on commit 10313bd

Please sign in to comment.