From c8c065e47d44d6ae78a92a35c1429d7cefe6f8dd Mon Sep 17 00:00:00 2001 From: Dustin Wyatt Date: Sun, 6 Feb 2022 07:21:09 -0600 Subject: [PATCH] Ignore all files in gen/ except for __init__.py (#269) --- .gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 61851bf2c..6f1dbf0ea 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,8 @@ # comtypes specific comtypes/__pycache__/*.pyc comtypes/client/__pycache__/*.pyc -comtypes/gen/__pycache__/*.pyc +comtypes/gen/ +!comtypes/gen/__init__.py comtypes/tools/__pycache__/*.pyc comtypes.egg-info/*