From 45c4a3c3efe0c54917ce3f065f0e0ba618bf583a Mon Sep 17 00:00:00 2001 From: MosheSheena Date: Mon, 16 Nov 2020 12:17:58 +0200 Subject: [PATCH] Add .venv to .gitignore (#135) * Add .venv to .gitignore .venv is common to virtual-environments created in PyCharm IDE. This commit adds it to be ignored by git. * Add section to .gitignore --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 9a6bcaf..4922f06 100644 --- a/.gitignore +++ b/.gitignore @@ -57,3 +57,6 @@ docs/_build/ # PyBuilder target/ python-rrmngmnt.iml + +# Pycharm +/.venv/