msen7437 / FlaskBlog

Website to upload, like and comment posts.
0 stars 0 forks source link

Remove __pycache__ and .pyc files from your repo #13

Open LucaKuechler opened 2 years ago

LucaKuechler commented 2 years ago

Hey MSE,

your repo contains a lot of .pyc files and pycache folders. These are not important for your python code. There is no need for them to be pushed on GitHub. To make sure that doesn't happen again, add the following lines to your .gitignore file.

__pycache__/
*.py[cod]

Best Regards Luca Küchler