Skip to content

Commit 860e059

Browse files
ruff
1 parent d578931 commit 860e059

File tree

1 file changed

+3
-1
lines changed
  • installation_and_upgrade/ibex_install_utils/tasks

1 file changed

+3
-1
lines changed

installation_and_upgrade/ibex_install_utils/tasks/git_tasks.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,9 @@ def checkout_to_release_branch(self) -> None:
5252
print(f"Error running git status: {e}")
5353

5454
try:
55-
subprocess.check_call(f"cd /d {EPICS_PATH} && git checkout -b %COMPUTERNAME%", shell=True)
55+
subprocess.check_call(
56+
f"cd /d {EPICS_PATH} && git checkout -b %COMPUTERNAME%", shell=True
57+
)
5658
print("Checked out to the new release branch")
5759
subprocess.check_call(
5860
f"cd /d {EPICS_PATH} && git push -u origin %COMPUTERNAME%", shell=True

0 commit comments

Comments
 (0)