From 8b677ffb70f098fa3a01caa131f45428581764e3 Mon Sep 17 00:00:00 2001 From: mccrindlebrian Date: Tue, 17 Dec 2024 20:12:55 -0500 Subject: [PATCH] black --- docs/conf.py | 36 +++++++++++++++++------------------- 1 file changed, 17 insertions(+), 19 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 1201426..730eafa 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -5,36 +5,34 @@ # -- Project information ----------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information -import os -import sys +import os +import sys -sys.path.insert(0, os.path.abspath('../atom')) +sys.path.insert(0, os.path.abspath("../atom")) -project = 'atom' -copyright = '2024, Macrocosmos' -author = 'Macrocosmos' -release = '1.0.0' +project = "atom" +copyright = "2024, Macrocosmos" +author = "Macrocosmos" +release = "1.0.0" # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration extensions = [ - 'sphinx.ext.autodoc', - 'sphinx.ext.todo', - 'sphinx.ext.viewcode', - 'sphinx.ext.napoleon', - 'sphinx.ext.autosummary', - 'sphinx_autodoc_typehints' # Render type hints nicely - + "sphinx.ext.autodoc", + "sphinx.ext.todo", + "sphinx.ext.viewcode", + "sphinx.ext.napoleon", + "sphinx.ext.autosummary", + "sphinx_autodoc_typehints", # Render type hints nicely ] -templates_path = ['_templates'] -exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store'] - +templates_path = ["_templates"] +exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"] # -- Options for HTML output ------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output -html_theme = 'sphinx_book_theme' -html_static_path = ['_static'] +html_theme = "sphinx_book_theme" +html_static_path = ["_static"]