From 5700b42098286b40f2ca190040891e1b897a15f8 Mon Sep 17 00:00:00 2001 From: erik Date: Thu, 2 Mar 2023 12:47:27 +0100 Subject: [PATCH] Remove redundant method --- infrastructure_api.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/infrastructure_api.py b/infrastructure_api.py index 06e2d17..2490686 100644 --- a/infrastructure_api.py +++ b/infrastructure_api.py @@ -203,11 +203,6 @@ class GitApi(): output = self.get_latest_n_commits(1) return " ".join(output) - def tag_annotated(self, annotation: str, message: str): - self.system_repository.run_checked( - 'git', 'tag', '-a', annotation, '-m', message) - return self.system_repository.stdout - def tag_annotated(self, annotation: str, message: str, count: int): self.system_repository.run_checked( 'git', 'tag', '-a', annotation, '-m', message, f'HEAD~{count}')