From 0cda9b6e37ac8425a53a0516df9071d5b5bd0003 Mon Sep 17 00:00:00 2001 From: J0J0 Todos Date: Fri, 26 Jul 2024 10:45:08 +0200 Subject: [PATCH] Fix Sphinx build warning _static path not found We don't use static files, thus comment out the option. --- doc/source/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/source/conf.py b/doc/source/conf.py index 1b5ccf1..2c2c09f 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -65,7 +65,7 @@ # Add any paths that contain custom static files (such as style sheets) here, # relative to this directory. They are copied after the builtin static files, # so a file named "default.css" will overwrite the builtin "default.css". -html_static_path = ['_static'] +# html_static_path = ['_static'] html_theme_options = { 'collapse_navigation': True,