Omnibus commited on
Commit
3840b5a
1 Parent(s): 61eea2b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -29,8 +29,8 @@ def query2(fetch_url):
29
  def find_fn(inp,out_json):
30
  print(out_json['rows'])
31
  print (inp)
32
- for row in out_json['rows']:
33
- print row['image']['source']
34
  return(f'{out_json}["rows"][0]')
35
  with gr.Blocks() as app:
36
  with gr.Row():
 
29
  def find_fn(inp,out_json):
30
  print(out_json['rows'])
31
  print (inp)
32
+ for rows in out_json['rows']:
33
+ print (rows['row']['image']['src'])
34
  return(f'{out_json}["rows"][0]')
35
  with gr.Blocks() as app:
36
  with gr.Row():