Skip to content

Commit 4e8d914

Browse files
committed
Run black.
1 parent 5f0c16d commit 4e8d914

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

examples/conf.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import os
22
from sphinx.application import Sphinx
3+
34
# -- Project information -----------------------------------------------------
45
project = "PyMC"
56
copyright = "2022, PyMC Community"
@@ -21,7 +22,7 @@
2122
"sphinxcontrib.bibtex",
2223
"sphinx_codeautolink",
2324
"notfound.extension",
24-
'sphinx_gallery.load_style',
25+
"sphinx_gallery.load_style",
2526
]
2627

2728
# List of patterns, relative to source directory, that match files and
@@ -37,6 +38,7 @@
3738
"page_footer.md",
3839
]
3940

41+
4042
def hack_nbsphinx(app: Sphinx) -> None:
4143
from nbsphinx import (
4244
depart_gallery_html,
@@ -68,8 +70,11 @@ def do_nothing(*node):
6870
# Monkey-patch Sphinx TocTree adapter
6971
toctree.TocTree.resolve = patched_toctree_resolve
7072

73+
7174
def setup(app: Sphinx):
7275
hack_nbsphinx(app)
76+
77+
7378
# -- Options for HTML output -------------------------------------------------
7479

7580
# The theme to use for HTML and HTML Help pages. See the documentation for

0 commit comments

Comments
 (0)