Skip to content

Commit 4840e4c

Browse files
committed
Fix Sphinx conf.py path issue for documentation build
- Correct Python path from '../src' to '../../src' in conf.py - This allows Sphinx to properly locate and import source modules for autodoc - Resolves build-docs CI failure by ensuring proper module resolution
1 parent 2c9ae18 commit 4840e4c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/CodeDocs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import sys
66

77
# Add the project root to Python path
8-
sys.path.insert(0, os.path.abspath('../src'))
8+
sys.path.insert(0, os.path.abspath('../../src'))
99

1010
# -- Project information -----------------------------------------------------
1111
project = 'unstructuredDataHandler'

0 commit comments

Comments
 (0)