update module path

This commit is contained in:
Emmanuel Garette 2022-10-17 18:21:41 +02:00
parent 381aada804
commit 629ee5b548

View file

@ -1,10 +1,10 @@
import __main__ import __main__
from os.path import dirname as _dirname, abspath as _abspath, join as _join, isfile as _isfile, isdir as _isdir from os.path import join as _join, isfile as _isfile, isdir as _isdir
from os import makedirs as _makedirs from os import makedirs as _makedirs, environ as _environ
from uuid import uuid4 as _uuid4 from uuid import uuid4 as _uuid4
_HERE = _dirname(_dirname(_abspath(__main__.__file__))) _HERE = _environ['PWD']
_PASSWORD_DIR = _join(_HERE, 'password') _PASSWORD_DIR = _join(_HERE, 'password')