ashwinaravind commited on
Commit
1b9c8e4
1 Parent(s): c4e21d2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -2,7 +2,7 @@ import gradio as gr
2
 
3
  def greet(name,history):
4
  hist_msg=""
5
- for h in history
6
  hist_msg = hist_msg + h
7
  return "Hello " + name + "!!" + hist_msg
8
 
 
2
 
3
  def greet(name,history):
4
  hist_msg=""
5
+ for h in history:
6
  hist_msg = hist_msg + h
7
  return "Hello " + name + "!!" + hist_msg
8