Skip to content

Commit 22ff22e

Browse files
format
1 parent 92dd1c1 commit 22ff22e

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

exasol/toolbox/nox/_documentation.py

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,14 @@ def _build_multiversion_docs(session: nox.Session, config: Config) -> None:
4242
def _git_diff_changes_main() -> bool:
4343
"""return True if doc/changes is unchanged"""
4444
p = subprocess.run(
45-
["git", "diff", "--quiet", "origin/main", "--", PROJECT_CONFIG.root / "doc/changes"],
45+
[
46+
"git",
47+
"diff",
48+
"--quiet",
49+
"origin/main",
50+
"--",
51+
PROJECT_CONFIG.root / "doc/changes",
52+
],
4653
capture_output=True,
4754
)
4855
return p.returncode != 0

0 commit comments

Comments
 (0)