don't need to insert that path

This commit is contained in:
Finn Christiansen 2021-01-24 17:47:58 +01:00
parent 89460d9060
commit 90455104a0

View file

@ -1,7 +1,6 @@
import sys
import os
sys.path.insert(0, os.path.join(os.path.dirname(__file__), 'lib/python3.9/site-packages'))
sys.path.insert(1, os.path.dirname(__file__))
sys.path.insert(0, os.path.dirname(__file__))
activate_this = os.path.join(os.path.dirname(__file__), 'bin/activate_this.py')
with open(activate_this) as file_:
exec(file_.read(), dict(__file__=activate_this))