muellerzr HF staff commited on
Commit
f674986
1 Parent(s): 4a4d6de
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -25,7 +25,7 @@ def run_aim():
25
  subprocess.run(["unzip", "test.zip"])
26
  subprocess.run(["mv", "test/.aim/", "/home/user/app/.aim/"])
27
  time.sleep(3)
28
- cmd = f"aim up --host 0.0.0.0 --port 7860 --dev"
29
  subprocess.run(cmd)
30
 
31
  """
 
25
  subprocess.run(["unzip", "test.zip"])
26
  subprocess.run(["mv", "test/.aim/", "/home/user/app/.aim/"])
27
  time.sleep(3)
28
+ cmd = f"aim up --host 0.0.0.0 --port 7860 --dev".split(" ")
29
  subprocess.run(cmd)
30
 
31
  """