Skip to content

Commit 7fccc2d

Browse files
committed
chore: run ruff format on noxfile
1 parent 6a5b503 commit 7fccc2d

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

noxfile.py

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,7 @@
1515

1616
REPO_ROOT: Path = Path(__file__).parent
1717
NEXTGEN_STARTER_CACHE_FOLDER: Path = platformdirs.user_cache_path(
18-
appname="cookiecutter-hypermodern-python",
19-
appauthor="56kyle",
20-
ensure_exists=True
18+
appname="cookiecutter-hypermodern-python", appauthor="56kyle", ensure_exists=True
2119
)
2220

2321
PROJECT_DEMOS_FOLDER: Path = NEXTGEN_STARTER_CACHE_FOLDER / "project_demos"
@@ -77,7 +75,14 @@ def docs(session: Session) -> None:
7775
@nox.session
7876
def linkcheck(session: Session) -> None:
7977
"""Build the documentation."""
80-
args = session.posargs or ["-b", "linkcheck", "-W", "--keep-going", "docs", "docs/_build"]
78+
args = session.posargs or [
79+
"-b",
80+
"linkcheck",
81+
"-W",
82+
"--keep-going",
83+
"docs",
84+
"docs/_build",
85+
]
8186

8287
builddir = Path("docs", "_build")
8388
if builddir.exists():

0 commit comments

Comments
 (0)