From d17cb09de923008fe55e90116d0e0fbfb7ec7d64 Mon Sep 17 00:00:00 2001 From: Eric Eisenhart <1577595+eric-eisenhart@users.noreply.github.com> Date: Tue, 28 Mar 2023 15:27:28 -0700 Subject: [PATCH] Ignore compiled python stuff Ignore byte-compiled python stuff. Taken from https://github.com/github/gitignore/blob/main/Python.gitignore --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 9b8920b..ce91e5a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,5 @@ *.log config.py +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod]