summaryrefslogtreecommitdiff
path: root/git/util.py
diff options
context:
space:
mode:
authorSebastian Thiel <sebastian.thiel@icloud.com>2021-05-13 10:22:33 +0800
committerSebastian Thiel <sebastian.thiel@icloud.com>2021-05-13 10:22:33 +0800
commitfed0cadffd20e48bed8e78fd51a245ad666c54f6 (patch)
tree0dfd3536a1b207d7518c27c7ccae99fe434ba56f /git/util.py
parent96c43652c9f5b11b611e1aca0a6d67393e9e38c1 (diff)
downloadgitpython-fed0cadffd20e48bed8e78fd51a245ad666c54f6.tar.gz
remove comments
Diffstat (limited to 'git/util.py')
-rw-r--r--git/util.py3
1 files changed, 1 insertions, 2 deletions
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: