muellerzr commited on
Commit
ed3ad73
·
1 Parent(s): 860fbcf

unzip here

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -19,8 +19,7 @@ def download_logs():
19
  filename=filename,
20
  cache_dir = "."
21
  )
22
- raise ValueError(f'Location: {f}')
23
- subprocess.run("unzip aim_logs.zip")
24
 
25
  def run_aim():
26
  cmd = f"aim up --repo aim_logs --host {HOST} --port {PORT}".split()
 
19
  filename=filename,
20
  cache_dir = "."
21
  )
22
+ subprocess.run(f"unzip {f}".split())
 
23
 
24
  def run_aim():
25
  cmd = f"aim up --repo aim_logs --host {HOST} --port {PORT}".split()