gblazex commited on
Commit
3f91e4e
·
1 Parent(s): 9709945

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -460,7 +460,8 @@ with demo:
460
  )
461
 
462
 
463
- open('output/results.csv', 'w').write('hello world')
 
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