From 815d0daaa2706125958313f030ab6c898706bf7c Mon Sep 17 00:00:00 2001 From: n0061q <95093640+n0061q@users.noreply.github.com> Date: Tue, 19 Sep 2023 12:52:32 +0300 Subject: [PATCH] fix(sample-app): properly exclude __pycache__ in cdk.json --- .../aws-cdk/lib/init-templates/app/python/cdk.template.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/aws-cdk/lib/init-templates/app/python/cdk.template.json b/packages/aws-cdk/lib/init-templates/app/python/cdk.template.json index 1c467275741e1..cbf387c538a58 100644 --- a/packages/aws-cdk/lib/init-templates/app/python/cdk.template.json +++ b/packages/aws-cdk/lib/init-templates/app/python/cdk.template.json @@ -8,7 +8,7 @@ "requirements*.txt", "source.bat", "**/__init__.py", - "python/__pycache__", + "**/__pycache__", "tests" ] }