Skip to content

Commit ccf2265

Browse files
authored
Fix TOML syntax: Convert html_theme_options to single-line inline table
TOML inline tables (using {}) cannot span multiple lines. Fixed the html_theme_options dictionary to be a single-line inline table to resolve the sphinx build_docs check failure.
1 parent 85e8194 commit ccf2265

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

pyproject.toml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -242,11 +242,7 @@ extensions = [
242242
]
243243
html_static_path = [ "_static" ]
244244
html_theme = "furo"
245-
html_theme_options = {
246-
"source_repository": "https://github.com/TheAlgorithms/Python/",
247-
"source_branch": "master",
248-
"source_directory": "docs/",
249-
}
245+
html_theme_options = { "source_repository" = "https://github.com/TheAlgorithms/Python/", "source_branch" = "master", "source_directory" = "docs/" }
250246
myst_enable_extensions = [
251247
"amsmath",
252248
"attrs_inline",

0 commit comments

Comments
 (0)