burtenshaw HF staff commited on
Commit
d3d5007
1 Parent(s): e298c65

remove file

Browse files
Files changed (1) hide show
  1. app.py +4 -5
app.py CHANGED
@@ -12,11 +12,10 @@ def run():
12
  import subprocess
13
  import sys
14
 
15
- with open("out-file.txt", "w") as f:
16
- process = subprocess.Popen(
17
- [f"{sys.executable}", "prometheus_pipeline.py"],
18
- stdout=subprocess.PIPE,
19
- )
20
 
21
  content = ""
22
 
 
12
  import subprocess
13
  import sys
14
 
15
+ process = subprocess.Popen(
16
+ [f"{sys.executable}", "prometheus_pipeline.py"],
17
+ stdout=subprocess.PIPE,
18
+ )
 
19
 
20
  content = ""
21