From b7af31d65b8e252353fc070ed8a186bdbb3d2898 Mon Sep 17 00:00:00 2001 From: Igor Velkov <325961+iav@users.noreply.github.com> Date: Thu, 5 Mar 2026 03:49:43 +0200 Subject: [PATCH] fix(gitignore): ignore __pycache__ at all depths (#7863) `/__pycache__/*` only covered the root level. Replace with `**/__pycache__/` so that generated bytecode directories in lib/tools/ and elsewhere are ignored. Co-Authored-By: Claude Sonnet 4.6 --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index f599d5086f..37e91c247d 100644 --- a/.gitignore +++ b/.gitignore @@ -22,7 +22,7 @@ ubuntu-*-cloudimg-console.log .DS_Store *~ *.swp -/__pycache__/* +**/__pycache__/ # Mainly generated by merge tools like 'meld' *.orig