Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -460,7 +460,8 @@ with demo:
|
|
460 |
)
|
461 |
|
462 |
|
463 |
-
open('output/results.csv', 'w')
|
|
|
464 |
|
465 |
print(f"app start time {time.time() - app_start_time:.2f} seconds")
|
466 |
|
|
|
460 |
)
|
461 |
|
462 |
|
463 |
+
with open('output/results.csv', 'w') as f:
|
464 |
+
f.write('hello world')
|
465 |
|
466 |
print(f"app start time {time.time() - app_start_time:.2f} seconds")
|
467 |
|