diff options
author | yobmod <yobmod@gmail.com> | 2021-05-12 17:03:10 +0100 |
---|---|---|
committer | yobmod <yobmod@gmail.com> | 2021-05-12 17:03:10 +0100 |
commit | 3473060f4b356a6c8ed744ba17ad9aa26ef6aab7 (patch) | |
tree | 2dc31957bc5b15036e56e194a90cf886976f85c9 /git/cmd.py | |
parent | c2f9f4e7fd8af09126167fd1dfa151be4fedcd71 (diff) | |
download | gitpython-3473060f4b356a6c8ed744ba17ad9aa26ef6aab7.tar.gz |
Add typing section to cmd.py
Diffstat (limited to 'git/cmd.py')
-rw-r--r-- | git/cmd.py | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -40,6 +40,18 @@ from .util import ( stream_copy, ) +# typing --------------------------------------------------------------------------- + +from typing import TYPE_CHECKING + +from git.types import TBD + +if TYPE_CHECKING: + pass + + +# --------------------------------------------------------------------------------- + execute_kwargs = {'istream', 'with_extended_output', 'with_exceptions', 'as_process', 'stdout_as_string', 'output_stream', 'with_stdout', 'kill_after_timeout', |