Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
rookiepeng committed Jul 14, 2024
1 parent c69d0b1 commit 0ecd091
Show file tree
Hide file tree
Showing 4 changed files with 79,399 additions and 79,398 deletions.
3 changes: 2 additions & 1 deletion app.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,8 @@ def on_modal_open(is_modal_open):
if os.path.isfile("./config.json"):
config = load_config("./config.json")
else:
config = {}
config = {"DATA_PATH": DATA_PATH}
save_config(config, "./config.json")
data_path = config.get("DATA_PATH", DATA_PATH)

if os.path.exists("./temp"):
Expand Down
2 changes: 1 addition & 1 deletion app.spec
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ exe = EXE(pyz,
bootloader_ignore_signals=False,
strip=False,
upx=True,
console=False,
console=True,
icon='assets/favicon.ico' )
coll = COLLECT(exe,
a.binaries,
Expand Down
Loading

0 comments on commit 0ecd091

Please sign in to comment.