From fed0cadffd20e48bed8e78fd51a245ad666c54f6 Mon Sep 17 00:00:00 2001 From: Sebastian Thiel Date: Thu, 13 May 2021 10:22:33 +0800 Subject: remove comments --- git/util.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'git/util.py') diff --git a/git/util.py b/git/util.py index 30018310..403e66a6 100644 --- a/git/util.py +++ b/git/util.py @@ -332,9 +332,8 @@ def is_cygwin_git(git_executable: Union[None, PathLike]) -> bool: return False if git_executable is None: - return False # or raise error? + return False - #from subprocess import check_output git_executable = str(git_executable) is_cygwin = _is_cygwin_cache.get(git_executable) # type: Optional[bool] if is_cygwin is None: -- cgit v1.2.1