Skip to content

Commit bca1942

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 3655b4c commit bca1942

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/ansys/tools/repo_sync/repo_sync.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,9 @@ def synchronize(
254254
repo.index.commit(f"{'[skip ci] ' if skip_ci else ''}sync: add changes from local folder")
255255

256256
# Get a list of the files modified
257-
output = repo.git.diff("--compact-summary", f"{branch_checked_out}", f"{target_branch_name}")
257+
output = repo.git.diff(
258+
"--compact-summary", f"{branch_checked_out}", f"{target_branch_name}"
259+
)
258260

259261
# If output is empty, avoid creating PR
260262
if not output:

0 commit comments

Comments
 (0)