From 28aca0c1f50e5a40eea472eea302ce4cd035ea65 Mon Sep 17 00:00:00 2001 From: Yu Guo Date: Sat, 26 Oct 2024 01:07:11 +0900 Subject: [PATCH] chore: add __pycache__ to gitignore (#498) * add __pycache__ to gitignore * doc: fix typo --------- Co-authored-by: Steven Arcangeli <506791+stevearc@users.noreply.github.com> --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index d8cb86e..290f656 100644 --- a/.gitignore +++ b/.gitignore @@ -6,6 +6,9 @@ luac.out *.zip *.tar.gz +# python bytecode +__pycache__ + # Object files *.o *.os