Skip to content

Commit 3473060

Browse files
committed
Add typing section to cmd.py
1 parent c2f9f4e commit 3473060

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

Diff for: git/cmd.py

+12
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,18 @@
4040
stream_copy,
4141
)
4242

43+
# typing ---------------------------------------------------------------------------
44+
45+
from typing import TYPE_CHECKING
46+
47+
from git.types import TBD
48+
49+
if TYPE_CHECKING:
50+
pass
51+
52+
53+
# ---------------------------------------------------------------------------------
54+
4355
execute_kwargs = {'istream', 'with_extended_output',
4456
'with_exceptions', 'as_process', 'stdout_as_string',
4557
'output_stream', 'with_stdout', 'kill_after_timeout',

0 commit comments

Comments
 (0)