diff --git a/ogr/services/github/project.py b/ogr/services/github/project.py index 881df96e..5b939e03 100644 --- a/ogr/services/github/project.py +++ b/ogr/services/github/project.py @@ -210,13 +210,7 @@ def get_owners(self) -> list[str]: return [self.github_repo.owner.login] def __get_collaborators(self) -> set[str]: - try: - collaborators = self._get_collaborators_with_permission() - except github.GithubException: - logger.debug( - "Current Github token must have push access to view repository permissions.", - ) - return set() + collaborators = self._get_collaborators_with_permission() usernames = [] for login, permission in collaborators.items():