From a4edef676c576872c03e4ad7d2ba993991e4173e Mon Sep 17 00:00:00 2001 From: Robert Alonso <17463757+rgalonso@users.noreply.github.com> Date: Sat, 26 Oct 2024 21:32:10 +0000 Subject: [PATCH] feat: add get_issue_url() This is really just a dummy operation so that main can unconditionally make the call on any client --- LocalClient.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/LocalClient.py b/LocalClient.py index b15a495..adbb912 100644 --- a/LocalClient.py +++ b/LocalClient.py @@ -37,3 +37,6 @@ class LocalClient(object): def close_issue(self, issue): return 200 + + def get_issue_url(self, new_issue_number): + return "N/A"