From 173605fe2c16f8bed2710a6c3e9d6d064cf152de Mon Sep 17 00:00:00 2001 From: Babuuu <59009890+aynugek@users.noreply.github.com> Date: Mon, 28 Aug 2023 14:24:54 +0300 Subject: [PATCH] chore: Update boilerplate gitignore (#22220) Add __pycache__ to .gitignore file of the new app. --- frappe/utils/boilerplate.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frappe/utils/boilerplate.py b/frappe/utils/boilerplate.py index 39ae274b13..6d82ab26c8 100644 --- a/frappe/utils/boilerplate.py +++ b/frappe/utils/boilerplate.py @@ -518,7 +518,8 @@ gitignore_template = """.DS_Store *.egg-info *.swp tags -node_modules""" +node_modules +__pycache__""" github_workflow_template = """ name: CI