refactor: get_issue_url() returns *just* the URL

Leave the extra text to the caller (main)
This commit is contained in:
Robert Alonso
2024-10-26 20:22:18 +00:00
parent b9c9d197ff
commit 1674ad54d4
2 changed files with 2 additions and 2 deletions

View File

@@ -352,4 +352,4 @@ class GitHubClient(object):
return pr_request.status_code
def get_issue_url(self, new_issue_number):
return f'Issue URL: {self.line_base_url}{self.repo}/issues/{new_issue_number}'
return f'{self.line_base_url}{self.repo}/issues/{new_issue_number}'