Skip to content

Commit e73afa2

Browse files
authored
Merge pull request funkelab#19 from janelia-cellmap/actions/black
Format Python code with psf/black push
2 parents c25cb79 + 08f134d commit e73afa2

File tree

1 file changed

+12
-11
lines changed

1 file changed

+12
-11
lines changed

docs/source/conf.py

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -12,43 +12,44 @@
1212
#
1313
import os
1414
import sys
15-
sys.path.insert(0, os.path.abspath('../..'))
15+
16+
sys.path.insert(0, os.path.abspath("../.."))
1617

1718

1819
# -- Project information -----------------------------------------------------
1920

20-
project = 'DaCapo'
21-
copyright = '2022, William Patton, David Ackerman, Jan Funke'
22-
author = 'William Patton, David Ackerman, Jan Funke'
21+
project = "DaCapo"
22+
copyright = "2022, William Patton, David Ackerman, Jan Funke"
23+
author = "William Patton, David Ackerman, Jan Funke"
2324

2425

2526
# -- General configuration ---------------------------------------------------
2627

2728
# Add any Sphinx extension module names here, as strings. They can be
2829
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
2930
# ones.
30-
extensions = ['sphinx.ext.autodoc', 'sphinx.ext.napoleon', 'sphinx_autodoc_typehints']
31+
extensions = ["sphinx.ext.autodoc", "sphinx.ext.napoleon", "sphinx_autodoc_typehints"]
3132

3233
# Add any paths that contain templates here, relative to this directory.
33-
templates_path = ['_templates']
34+
templates_path = ["_templates"]
3435

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

4041

4142
# -- Options for HTML output -------------------------------------------------
4243

4344
# The theme to use for HTML and HTML Help pages. See the documentation for
4445
# a list of builtin themes.
4546
#
46-
html_theme = 'sphinx_material'
47+
html_theme = "sphinx_material"
4748

4849
# Add any paths that contain custom static files (such as style sheets) here,
4950
# relative to this directory. They are copied after the builtin static files,
5051
# so a file named "default.css" will overwrite the builtin "default.css".
51-
html_static_path = ['_static']
52+
html_static_path = ["_static"]
5253
html_css_files = [
53-
'css/custom.css',
54-
]
54+
"css/custom.css",
55+
]

0 commit comments

Comments
 (0)