summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAlex Grönholm <alex.gronholm@nextday.fi>2022-04-20 01:00:57 +0300
committerAlex Grönholm <alex.gronholm@nextday.fi>2022-04-20 01:11:20 +0300
commitb20f62d929eed84ad18020bb82dd43d8cb70da4d (patch)
treec42bf1877dd54755c55c649269e1254995bdf0c9 /docs
parent82992cd427a9ab2351d8e0719b82d826dff5a521 (diff)
downloadapscheduler-b20f62d929eed84ad18020bb82dd43d8cb70da4d.tar.gz
Switched to Black for code formatting
Diffstat (limited to 'docs')
-rw-r--r--docs/conf.py23
1 files changed, 11 insertions, 12 deletions
diff --git a/docs/conf.py b/docs/conf.py
index 2b78efa..e1972b3 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -18,9 +18,9 @@ from __future__ import annotations
# -- Project information -----------------------------------------------------
-project = 'APScheduler'
-copyright = 'Alex Grönholm'
-author = 'Alex Grönholm'
+project = "APScheduler"
+copyright = "Alex Grönholm"
+author = "Alex Grönholm"
# -- General configuration ---------------------------------------------------
@@ -28,13 +28,10 @@ author = 'Alex Grönholm'
# 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.intersphinx'
-]
+extensions = ["sphinx.ext.autodoc", "sphinx.ext.intersphinx"]
# 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.
@@ -47,12 +44,14 @@ exclude_patterns = []
# The theme to use for HTML and HTML Help pages. See the documentation for
# a list of builtin themes.
#
-html_theme = 'sphinx_rtd_theme'
+html_theme = "sphinx_rtd_theme"
# 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"]
-intersphinx_mapping = {'python': ('https://docs.python.org/', None),
- 'sqlalchemy': ('http://docs.sqlalchemy.org/en/latest/', None)}
+intersphinx_mapping = {
+ "python": ("https://docs.python.org/", None),
+ "sqlalchemy": ("http://docs.sqlalchemy.org/en/latest/", None),
+}