From c2b49b51f72b5863f761df34ef423047462e4bfc Mon Sep 17 00:00:00 2001 From: slinkydeveloper Date: Tue, 23 Jul 2024 16:28:46 +0200 Subject: [PATCH] Add __pycache__ to ignore files Signed-off-by: slinkydeveloper --- templates/python/.dockerignore | 3 ++- templates/python/.gitignore | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/templates/python/.dockerignore b/templates/python/.dockerignore index b694934f..7cd6f5d8 100644 --- a/templates/python/.dockerignore +++ b/templates/python/.dockerignore @@ -1 +1,2 @@ -.venv \ No newline at end of file +.venv +__pycache__/ \ No newline at end of file diff --git a/templates/python/.gitignore b/templates/python/.gitignore index b694934f..7cd6f5d8 100644 --- a/templates/python/.gitignore +++ b/templates/python/.gitignore @@ -1 +1,2 @@ -.venv \ No newline at end of file +.venv +__pycache__/ \ No newline at end of file