update module path
This commit is contained in:
parent
381aada804
commit
629ee5b548
1 changed files with 3 additions and 3 deletions
|
@ -1,10 +1,10 @@
|
|||
import __main__
|
||||
from os.path import dirname as _dirname, abspath as _abspath, join as _join, isfile as _isfile, isdir as _isdir
|
||||
from os import makedirs as _makedirs
|
||||
from os.path import join as _join, isfile as _isfile, isdir as _isdir
|
||||
from os import makedirs as _makedirs, environ as _environ
|
||||
from uuid import uuid4 as _uuid4
|
||||
|
||||
|
||||
_HERE = _dirname(_dirname(_abspath(__main__.__file__)))
|
||||
_HERE = _environ['PWD']
|
||||
_PASSWORD_DIR = _join(_HERE, 'password')
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue