feat(chalice): fixed github integration

This commit is contained in:
Taha Yassine Kraiem 2022-09-02 20:26:06 +01:00
parent c3547174e5
commit ee4ebd838f
2 changed files with 2 additions and 2 deletions

View file

@ -7,7 +7,7 @@ class BaseIntegration(ABC):
def __init__(self, user_id, ISSUE_CLASS):
self._user_id = user_id
self.__issue_handler = ISSUE_CLASS(self.integration_token)
self._issue_handler = ISSUE_CLASS(self.integration_token)
@property
@abstractmethod

View file

@ -18,7 +18,7 @@ class GitHubIntegration(integration_base.BaseIntegration):
@property
def issue_handler(self):
return self.__issue_handler
return self._issue_handler
def get_obfuscated(self):
integration = self.get()