Skip to content

Commit f5daf44

Browse files
committed
Fix source path in sphinx conf.py
1 parent 1228aed commit f5daf44

1 file changed

Lines changed: 10 additions & 14 deletions

File tree

docs/source/conf.py

Lines changed: 10 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -5,24 +5,22 @@
55

66
import os
77
import sys
8-
sys.path.insert(0, os.path.abspath('../../src'))
8+
9+
sys.path.insert(0, os.path.abspath("../../plugin_template/src"))
910

1011
# -- Project information -----------------------------------------------------
1112
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
1213

13-
project = 'ALC AiiDAlab Guides'
14-
copyright = '2025, Ada Lovelace Center'
15-
author = 'Dr. Benjamin T. Speake'
14+
project = "ALC AiiDAlab Guides"
15+
copyright = "2025, Ada Lovelace Center"
16+
author = "Dr. Benjamin T. Speake"
1617

1718
# -- General configuration ---------------------------------------------------
1819
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
1920

20-
extensions = [
21-
"sphinx.ext.autodoc",
22-
"sphinx.ext.napoleon"
23-
]
21+
extensions = ["sphinx.ext.autodoc", "sphinx.ext.napoleon"]
2422

25-
templates_path = ['_templates']
23+
templates_path = ["_templates"]
2624
exclude_patterns = []
2725

2826
source_suffix = ".rst"
@@ -31,11 +29,9 @@
3129
# -- Options for HTML output -------------------------------------------------
3230
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
3331

34-
html_theme = 'piccolo_theme'
35-
html_static_path = ['_static']
32+
html_theme = "piccolo_theme"
33+
html_static_path = ["_static"]
3634
html_css_files = ["custom.css"]
3735
# html_logo = "../../images/alc.svg"
3836

39-
html_theme_options = {
40-
"source_url": "https://github.com/stfc/alc-ux"
41-
}
37+
html_theme_options = {"source_url": "https://github.com/stfc/alc-ux"}

0 commit comments

Comments
 (0)