summaryrefslogtreecommitdiff
path: root/git/exc.py
diff options
context:
space:
mode:
Diffstat (limited to 'git/exc.py')
-rw-r--r--git/exc.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/git/exc.py b/git/exc.py
index 487ce179..22fcde0d 100644
--- a/git/exc.py
+++ b/git/exc.py
@@ -92,9 +92,7 @@ class GitCommandNotFound(CommandError):
"""Thrown if we cannot find the `git` executable in the PATH or at the path given by
the GIT_PYTHON_GIT_EXECUTABLE environment variable"""
- def __init__(
- self, command: Union[List[str], Tuple[str], str], cause: Union[str, Exception]
- ) -> None:
+ def __init__(self, command: Union[List[str], Tuple[str], str], cause: Union[str, Exception]) -> None:
super(GitCommandNotFound, self).__init__(command, cause)
self._msg = "Cmd('%s') not found%s"