From 0c14cac36f43240584ae286ab4a3fc42552dad74 Mon Sep 17 00:00:00 2001 From: Randy Eckman Date: Sun, 21 Jan 2024 00:53:26 -0600 Subject: [PATCH] address lint issue --- git/cmd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git/cmd.py b/git/cmd.py index 12cbf36b2..b4f1bc329 100644 --- a/git/cmd.py +++ b/git/cmd.py @@ -395,7 +395,7 @@ def _get_default_bash_path(cls) -> str: # independently of the Windows Git. A noteworthy example are repos # with Git LFS, where Git LFS may be installed in Windows but not # in WSL. - if os.name != 'nt': + if os.name != "nt": return "bash" gitcore = Path(cls()._call_process("--exec-path")) gitroot = gitcore.parent.parent.parent