alexkueck commited on
Commit
8baec1a
1 Parent(s): 18ce5c2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -172,7 +172,7 @@ def download_chats(selected_chats):
172
  # Diese Funktion bereitet die ausgewählten Chats zum Download vor
173
  data = "\n\n".join(chats[chat] for chat in selected_chats)
174
  file_path_download = save_and_download(data)
175
- return gr.File(file_path, label="Download-Chat", visible=True)
176
 
177
 
178
  """
 
172
  # Diese Funktion bereitet die ausgewählten Chats zum Download vor
173
  data = "\n\n".join(chats[chat] for chat in selected_chats)
174
  file_path_download = save_and_download(data)
175
+ return gr.File(file_path_download, label="Download-Chat", visible=True)
176
 
177
 
178
  """