From 21a75c62cc9ea8d89d76248cede46df00bfadbbb Mon Sep 17 00:00:00 2001 From: Ilya Siamionau Date: Tue, 28 May 2024 13:07:43 +0200 Subject: [PATCH] remove forgotten comments --- cycode/cli/utils/git_proxy.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/cycode/cli/utils/git_proxy.py b/cycode/cli/utils/git_proxy.py index b9431c85..4143c657 100644 --- a/cycode/cli/utils/git_proxy.py +++ b/cycode/cli/utils/git_proxy.py @@ -63,11 +63,9 @@ def get_null_tree(self) -> object: return git.NULL_TREE def get_invalid_git_repository_error(self) -> Type[BaseException]: - # we must cache it because we want to return the same class every time return git.InvalidGitRepositoryError def get_git_command_error(self) -> Type[BaseException]: - # we must cache it because we want to return the same class every time return git.GitCommandError