diff --git a/installation_and_upgrade/ibex_install_utils/tasks/git_tasks.py b/installation_and_upgrade/ibex_install_utils/tasks/git_tasks.py index ae5dc62..7ee7759 100644 --- a/installation_and_upgrade/ibex_install_utils/tasks/git_tasks.py +++ b/installation_and_upgrade/ibex_install_utils/tasks/git_tasks.py @@ -52,7 +52,9 @@ def checkout_to_release_branch(self) -> None: print(f"Error running git status: {e}") try: - subprocess.check_call(f"cd /d {EPICS_PATH} && git checkout -b %COMPUTERNAME%", shell=True) + subprocess.check_call( + f"cd /d {EPICS_PATH} && git checkout -b %COMPUTERNAME%", shell=True + ) print("Checked out to the new release branch") subprocess.check_call( f"cd /d {EPICS_PATH} && git push -u origin %COMPUTERNAME%", shell=True