Skip to content

Commit

Permalink
ruff
Browse files Browse the repository at this point in the history
  • Loading branch information
FreddieAkeroyd committed Aug 29, 2024
1 parent d578931 commit 860e059
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 860e059

Please sign in to comment.