Skip to content

Commit ce1c32c

Browse files
committed
lint
1 parent d8be4ca commit ce1c32c

File tree

1 file changed

+11
-9
lines changed

1 file changed

+11
-9
lines changed

docs/source/conf.py

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,19 @@
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 = 'Nucleus'
21-
copyright = '2021, Scale'
22-
author = 'Scale'
21+
project = "Nucleus"
22+
copyright = "2021, Scale"
23+
author = "Scale"
2324

2425
# The full version, including alpha/beta/rc tags
2526
from nucleus import __version__
27+
2628
release = "v" + str(__version__)
2729

2830

@@ -32,12 +34,12 @@
3234
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
3335
# ones.
3436
extensions = [
35-
'sphinx.ext.autodoc',
36-
'sphinx.ext.autosummary',
37+
"sphinx.ext.autodoc",
38+
"sphinx.ext.autosummary",
3739
]
3840

3941
# Add any paths that contain templates here, relative to this directory.
40-
templates_path = ['_templates']
42+
templates_path = ["_templates"]
4143

4244
# List of patterns, relative to source directory, that match files and
4345
# directories to ignore when looking for source files.
@@ -50,12 +52,12 @@
5052
# The theme to use for HTML and HTML Help pages. See the documentation for
5153
# a list of builtin themes.
5254
#
53-
html_theme = 'furo'
55+
html_theme = "furo"
5456

5557
# Add any paths that contain custom static files (such as style sheets) here,
5658
# relative to this directory. They are copied after the builtin static files,
5759
# so a file named "default.css" will overwrite the builtin "default.css".
58-
html_static_path = ['_static']
60+
html_static_path = ["_static"]
5961

6062
autosummary_generate = True
6163
autosummary_imported_members = True

0 commit comments

Comments
 (0)