summaryrefslogtreecommitdiff
path: root/git/cmd.py
diff options
context:
space:
mode:
authorSebastian Thiel <sebastian.thiel@icloud.com>2021-04-23 21:36:48 +0800
committerGitHub <noreply@github.com>2021-04-23 21:36:48 +0800
commit4119a576251448793c07ebd080534948cad2f170 (patch)
tree7bffff60a75770882832eec5ff2efcac9741139f /git/cmd.py
parent9f12c8c34371a7c46dad6788a48cf092042027ec (diff)
parent043e15fe140cfff8725d4f615f42fa1c55779402 (diff)
downloadgitpython-4119a576251448793c07ebd080534948cad2f170.tar.gz
Merge pull request #1226 from muggenhor/testing
ci: check types with mypy
Diffstat (limited to 'git/cmd.py')
-rw-r--r--git/cmd.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/git/cmd.py b/git/cmd.py
index e38261a0..ac3ca2ec 100644
--- a/git/cmd.py
+++ b/git/cmd.py
@@ -138,7 +138,7 @@ CREATE_NO_WINDOW = 0x08000000
## CREATE_NEW_PROCESS_GROUP is needed to allow killing it afterwards,
# see https://docs.python.org/3/library/subprocess.html#subprocess.Popen.send_signal
-PROC_CREATIONFLAGS = (CREATE_NO_WINDOW | subprocess.CREATE_NEW_PROCESS_GROUP
+PROC_CREATIONFLAGS = (CREATE_NO_WINDOW | subprocess.CREATE_NEW_PROCESS_GROUP # type: ignore[attr-defined]
if is_win else 0)