Skip to content

Commit c0eda70

Browse files
committed
Revert "chore: run ruff format on noxfile"
This reverts commit 7fccc2d.
1 parent 7fccc2d commit c0eda70

File tree

1 file changed

+4
-9
lines changed

1 file changed

+4
-9
lines changed

noxfile.py

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

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

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

8782
builddir = Path("docs", "_build")
8883
if builddir.exists():

0 commit comments

Comments
 (0)