Mikeplockhart commited on
Commit
c77bb9e
1 Parent(s): f921124

Update app.py

Browse files

Actually setting a return

Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -2,7 +2,7 @@ import gradio as gr
2
 
3
  def run_query(query_string: str):
4
  meal_string = f"Oh you want {query_string}. Go have a think yourself then."
5
- pass
6
 
7
  with gr.Blocks() as meal_search:
8
  gr.Markdown("Start typing below and then click **Run** to see the output.")
 
2
 
3
  def run_query(query_string: str):
4
  meal_string = f"Oh you want {query_string}. Go have a think yourself then."
5
+ return meal_string
6
 
7
  with gr.Blocks() as meal_search:
8
  gr.Markdown("Start typing below and then click **Run** to see the output.")