Skip to content

Commit 24e7f33

Browse files
committed
Fix lint
1 parent 84e3b5a commit 24e7f33

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

docs/sphinx/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,12 @@
4646
html_theme = "sphinx_rtd_theme"
4747

4848
# These folders are copied to the documentation's HTML output
49-
html_static_path = ['_static']
49+
html_static_path = ["_static"]
5050

5151
# These paths are either relative to html_static_path
5252
# or fully qualified paths (eg. https://...)
5353
html_css_files = [
54-
'css/custom.css',
54+
"css/custom.css",
5555
]
5656

5757

noxfile.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,4 +127,6 @@ def lint(session):
127127
@nox.session()
128128
def docs(session):
129129
session.install(".[docs]")
130-
session.run("sphinx-build", "-W", "docs/sphinx/", "docs/sphinx/_build", "-b", "html")
130+
session.run(
131+
"sphinx-build", "-W", "docs/sphinx/", "docs/sphinx/_build", "-b", "html"
132+
)

0 commit comments

Comments
 (0)