diff options
| author | yobmod <yobmod@gmail.com> | 2021-05-12 18:10:37 +0100 |
|---|---|---|
| committer | yobmod <yobmod@gmail.com> | 2021-05-12 18:10:37 +0100 |
| commit | f1ace258417deae329880754987851b1b8fc0a7a (patch) | |
| tree | 09b4e6b69e96e191951cedcf6ad30055968c6ab7 /git/exc.py | |
| parent | 887f249a2241d45765437b295b46bca1597d91a3 (diff) | |
| download | gitpython-f1ace258417deae329880754987851b1b8fc0a7a.tar.gz | |
Add types to cmd.py AutoInterrupt
Diffstat (limited to 'git/exc.py')
| -rw-r--r-- | git/exc.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -91,7 +91,7 @@ class GitCommandError(CommandError): """ Thrown if execution of the git command fails with non-zero status code. """ def __init__(self, command: Union[List[str], Tuple[str, ...], str], - status: Union[str, None, Exception] = None, + status: Union[str, int, None, Exception] = None, stderr: Optional[IO[str]] = None, stdout: Optional[IO[str]] = None, ) -> None: |
