Lev McKinney commited on
Commit
21e4838
1 Parent(s): 8116fb9
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -2,7 +2,7 @@ from platform import python_version
2
  import gradio as gr
3
 
4
  def greet(name):
5
- return "Hello " + name + "!!" + "Using python version: " + python_version()
6
 
7
  iface = gr.Interface(fn=greet, inputs="text", outputs="text")
8
  iface.launch()
 
2
  import gradio as gr
3
 
4
  def greet(name):
5
+ return "Hello " + name + "!!" + "Using python version: " + python_version() + "."
6
 
7
  iface = gr.Interface(fn=greet, inputs="text", outputs="text")
8
  iface.launch()