KarthickAdopleAI commited on
Commit
ed8a2ee
·
verified ·
1 Parent(s): 4186ad1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -57,7 +57,7 @@ def download_report():
57
  message = response.choices[0].message.content
58
 
59
  report_file_path = f"/tmp/report.txt"
60
- print('CWD : 'os.getcwd())
61
  with open(report_file_path,"w") as file:
62
  file.write(message)
63
 
 
57
  message = response.choices[0].message.content
58
 
59
  report_file_path = f"/tmp/report.txt"
60
+ print('CWD : ',os.getcwd())
61
  with open(report_file_path,"w") as file:
62
  file.write(message)
63