feat(chalice): fixed github integration
This commit is contained in:
parent
c3547174e5
commit
ee4ebd838f
2 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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()
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue