1
0
Fork 0

moved constants to src/constants.py

This commit is contained in:
Kim, Jimin 2022-03-15 16:20:35 +09:00
parent 933594cfbd
commit 39fddbf121
4 changed files with 4 additions and 4 deletions

View file

@ -11,7 +11,7 @@ import os
import sys import sys
from shutil import rmtree from shutil import rmtree
# must be synced with `src/__init__.py` # must be synced with `src/constants.py`
tmp_dir = "/tmp/com.developomp.setup" tmp_dir = "/tmp/com.developomp.setup"
# #

View file

@ -1,2 +1 @@
# must be synced with `setup.py`
tmp_dir = "/tmp/com.developomp.setup"

View file

@ -1 +1,2 @@
# must be synced with `setup.py`
tmp_dir = "/tmp/com.developomp.setup" tmp_dir = "/tmp/com.developomp.setup"

View file

@ -2,7 +2,7 @@ import inquirer
from glob import glob from glob import glob
from ..util import import_file from ..util import import_file
from src.log import log from src.log import log
from src import tmp_dir from src.constants import tmp_dir
def choose_action(): def choose_action():