Skip to content

Commit

Permalink
fix git status check
Browse files Browse the repository at this point in the history
  • Loading branch information
Tom-Willemsen authored Aug 28, 2024
1 parent 25d0d6d commit b8128dc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
class GitTasks(BaseTasks):
@task(f"Show Git status in {EPICS_PATH}")
def show_git_status(self):

Check failure on line 11 in installation_and_upgrade/ibex_install_utils/tasks/git_tasks.py

View workflow job for this annotation

GitHub Actions / call-workflow / ruff

Ruff (ANN201)

installation_and_upgrade/ibex_install_utils/tasks/git_tasks.py:11:9: ANN201 Missing return type annotation for public function `show_git_status`
subprocess.call(f"cd {EPICS_PATH} && git status", shell=True)
subprocess.call(f"cd /d {EPICS_PATH} && git status", shell=True)

@task("Swap instrument git branch to release on CONTROL-SVCS")
def checkout_to_release_branch(self):

Check failure on line 15 in installation_and_upgrade/ibex_install_utils/tasks/git_tasks.py

View workflow job for this annotation

GitHub Actions / call-workflow / ruff

Ruff (ANN201)

installation_and_upgrade/ibex_install_utils/tasks/git_tasks.py:15:9: ANN201 Missing return type annotation for public function `checkout_to_release_branch`
Expand Down

0 comments on commit b8128dc

Please sign in to comment.