chore(Linter): reformatted code with black (#211)

* chore(Linter): reformatted code with black

* Create black.yaml
This commit is contained in:
Mark Aron Szulyovszky
2022-02-17 19:22:17 +01:00
committed by GitHub
parent f3fee4a4e1
commit 8dd2d88740
101 changed files with 2596 additions and 2320 deletions
+11 -12
View File
@@ -12,17 +12,18 @@
#
import os
import sys
sys.path.insert(0, os.path.abspath('.'))
sys.path.insert(0, os.path.abspath("."))
# -- Project information -----------------------------------------------------
project = 'Drift'
copyright = '2022, Daniel Szemerey and Mark Szulyovszky'
author = 'Daniel Szemerey, Mark Szulyovszky'
project = "Drift"
copyright = "2022, Daniel Szemerey and Mark Szulyovszky"
author = "Daniel Szemerey, Mark Szulyovszky"
# The full version, including alpha/beta/rc tags
release = '1.0'
release = "1.0"
# -- General configuration ---------------------------------------------------
@@ -30,17 +31,15 @@ release = '1.0'
# 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.autosectionlabel'
]
extensions = ["sphinx.ext.autodoc", "sphinx.ext.autosectionlabel"]
# 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', 'sphinx-env']
exclude_patterns = ["_build", "Thumbs.db", ".DS_Store", "sphinx-env"]
# -- Options for HTML output -------------------------------------------------
@@ -48,9 +47,9 @@ exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store', 'sphinx-env']
# The theme to use for HTML and HTML Help pages. See the documentation for
# a list of builtin themes.
#
html_theme = 'furo'
html_theme = "furo"
# 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']