wasmdashai commited on
Commit
4a3c8fc
·
verified ·
1 Parent(s): d85e329

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -3,7 +3,8 @@ GK=0
3
 
4
  def greet(name):
5
  global GK
6
- GK+=1
 
7
  return f"namber is {GK}"
8
 
9
  demo = gr.Interface(fn=greet, inputs="text", outputs="text")
 
3
 
4
  def greet(name):
5
  global GK
6
+ while True:
7
+ GK+=1
8
  return f"namber is {GK}"
9
 
10
  demo = gr.Interface(fn=greet, inputs="text", outputs="text")