moved constants to src/constants.py
This commit is contained in:
parent
933594cfbd
commit
39fddbf121
4 changed files with 4 additions and 4 deletions
2
setup.py
2
setup.py
|
@ -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"
|
||||||
|
|
||||||
#
|
#
|
||||||
|
|
|
@ -1,2 +1 @@
|
||||||
# must be synced with `setup.py`
|
|
||||||
tmp_dir = "/tmp/com.developomp.setup"
|
|
||||||
|
|
|
@ -1 +1,2 @@
|
||||||
|
# must be synced with `setup.py`
|
||||||
tmp_dir = "/tmp/com.developomp.setup"
|
tmp_dir = "/tmp/com.developomp.setup"
|
||||||
|
|
|
@ -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():
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue