Merge pull request #716 from openreplay/dev

v1.8.0
This commit is contained in:
Kraiem Taha Yassine 2022-09-02 20:34:04 +01:00 committed by GitHub
commit d3b0934271
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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
return self._issue_handler
def get_obfuscated(self):
integration = self.get()