abidlabs HF Staff commited on
Commit
be53a1e
·
verified ·
1 Parent(s): e2d8c74

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
  with gr.Blocks() as demo:
4
  gr.Interface(lambda x:x, gr.Image("cheetah.jpg"), gr.Image())
5
- with demo.route("/page") as page:
6
  gr.Interface(lambda x:x, gr.Image("cheetah.jpg"), gr.Image(), title="second page")
7
 
8
  demo.launch()
 
2
 
3
  with gr.Blocks() as demo:
4
  gr.Interface(lambda x:x, gr.Image("cheetah.jpg"), gr.Image())
5
+ with demo.route("page") as page:
6
  gr.Interface(lambda x:x, gr.Image("cheetah.jpg"), gr.Image(), title="second page")
7
 
8
  demo.launch()