alexkueck commited on
Commit
86389b9
1 Parent(s): 3c132c8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -170,7 +170,7 @@ def download_chats(selected_chats):
170
  data = "\n\n".join(chats[chat] for chat in selected_chats)
171
 
172
  file_path = save_and_download(data)
173
- return gr.File(file_path, label="Download-Chat"), gr.Button("Cleanup", visible=True)
174
 
175
 
176
  """
 
170
  data = "\n\n".join(chats[chat] for chat in selected_chats)
171
 
172
  file_path = save_and_download(data)
173
+ return gr.File(file_path, label="Download-Chat", visible=True), gr.Button("Cleanup", visible=True)
174
 
175
 
176
  """