Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
pquentin committed Jan 17, 2025
1 parent 84e3b5a commit 24e7f33
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions docs/sphinx/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,12 @@
html_theme = "sphinx_rtd_theme"

# These folders are copied to the documentation's HTML output
html_static_path = ['_static']
html_static_path = ["_static"]

# These paths are either relative to html_static_path
# or fully qualified paths (eg. https://...)
html_css_files = [
'css/custom.css',
"css/custom.css",
]


Expand Down
4 changes: 3 additions & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,4 +127,6 @@ def lint(session):
@nox.session()
def docs(session):
session.install(".[docs]")
session.run("sphinx-build", "-W", "docs/sphinx/", "docs/sphinx/_build", "-b", "html")
session.run(
"sphinx-build", "-W", "docs/sphinx/", "docs/sphinx/_build", "-b", "html"
)

0 comments on commit 24e7f33

Please sign in to comment.