From acab42e67501bb72ae046d849f0df8e63286c541 Mon Sep 17 00:00:00 2001 From: Ivan Goncharov Date: Tue, 11 Jul 2023 16:48:46 +0700 Subject: [PATCH] ignore __pycache__ anywhere in sub-directories __pycache__ can be anywhere in sub-directories of python project, it is better ignore it everywhere it present --- Python.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python.gitignore b/Python.gitignore index 68bc17f9..f7010212 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -1,5 +1,5 @@ # Byte-compiled / optimized / DLL files -__pycache__/ +**/__pycache__/ *.py[cod] *$py.class