From 97f50939fd35a610be3bd659617faff4d65f8673 Mon Sep 17 00:00:00 2001 From: socar-humphrey Date: Thu, 1 Jul 2021 10:00:39 +0900 Subject: [PATCH] refactor(gitopscli/git_api): remove unused import --- gitopscli/git_api/github_git_repo_api_adapter.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gitopscli/git_api/github_git_repo_api_adapter.py b/gitopscli/git_api/github_git_repo_api_adapter.py index 4dda5e56..0269cccd 100644 --- a/gitopscli/git_api/github_git_repo_api_adapter.py +++ b/gitopscli/git_api/github_git_repo_api_adapter.py @@ -1,4 +1,5 @@ from typing import Optional, Literal + from github import ( Github, UnknownObjectException, @@ -6,8 +7,8 @@ GitRef, PullRequest, Repository, - GithubException, ) + from gitopscli.gitops_exception import GitOpsException from .git_repo_api import GitRepoApi