Skip to content

Commit

Permalink
Apply black
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefanie08 committed May 29, 2024
1 parent eb1b1a2 commit d3826d2
Showing 1 changed file with 18 additions and 17 deletions.
35 changes: 18 additions & 17 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,43 +12,44 @@
#
import os
import sys
sys.path.insert(0, os.path.abspath('../'))
sys.path.insert(0, os.path.abspath('../scripts'))
sys.path.insert(0, os.path.abspath('../oemof_b3/config/'))

sys.path.insert(0, os.path.abspath("../"))
sys.path.insert(0, os.path.abspath("../scripts"))
sys.path.insert(0, os.path.abspath("../oemof_b3/config/"))

# -- Project information -----------------------------------------------------

project = 'oemof-B3'
copyright = '2020, Reiner Lemoine Institut'
author = 'Reiner Lemoine Institut'
project = "oemof-B3"
copyright = "2020, Reiner Lemoine Institut"
author = "Reiner Lemoine Institut"

# The full version, including alpha/beta/rc tags
release = '0.0.5dev'
release = "0.0.5dev"


# -- General configuration ---------------------------------------------------
master_doc = 'index'
master_doc = "index"
# Add any Sphinx extension module names here, as strings. They can be
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
# ones.
extensions = [
'sphinx.ext.autodoc',
'sphinx.ext.coverage',
'sphinx.ext.napoleon',
'sphinxcontrib.bibtex',
'sphinx.ext.autosectionlabel'
"sphinx.ext.autodoc",
"sphinx.ext.coverage",
"sphinx.ext.napoleon",
"sphinxcontrib.bibtex",
"sphinx.ext.autosectionlabel",
]

# specify bibfiles for sphinxcontrib.bibtex
bibtex_bibfiles = ['bibliography.bib']
bibtex_bibfiles = ["bibliography.bib"]

# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']
templates_path = ["_templates"]

# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
# This pattern also affects html_static_path and html_extra_path.
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"]


# -- Options for HTML output -------------------------------------------------
Expand All @@ -65,7 +66,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"]


# -- Options for Sphinx autodoc ----------------------------------------------
Expand Down

0 comments on commit d3826d2

Please sign in to comment.