From 3473060f4b356a6c8ed744ba17ad9aa26ef6aab7 Mon Sep 17 00:00:00 2001 From: yobmod Date: Wed, 12 May 2021 17:03:10 +0100 Subject: Add typing section to cmd.py --- git/cmd.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/git/cmd.py b/git/cmd.py index ac3ca2ec..cafe999a 100644 --- a/git/cmd.py +++ b/git/cmd.py @@ -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', -- cgit v1.2.1