We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c2f9f4e commit 3473060Copy full SHA for 3473060
git/cmd.py
@@ -40,6 +40,18 @@
40
stream_copy,
41
)
42
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
55
execute_kwargs = {'istream', 'with_extended_output',
56
'with_exceptions', 'as_process', 'stdout_as_string',
57
'output_stream', 'with_stdout', 'kill_after_timeout',
0 commit comments