feat: add get_issue_url()

This is really just a dummy operation so that
main can unconditionally make the call on any client
This commit is contained in:
Robert Alonso 2024-10-26 21:32:10 +00:00
parent 1fa135d86b
commit a4edef676c

View File

@ -37,3 +37,6 @@ class LocalClient(object):
def close_issue(self, issue): def close_issue(self, issue):
return 200 return 200
def get_issue_url(self, new_issue_number):
return "N/A"