cyberandy commited on
Commit
9307503
1 Parent(s): 27ea5dc
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -225,7 +225,7 @@ async def process_url(url, max_depth, max_pages):
225
 
226
 
227
  # Gradio interface
228
- # theme = gr.themes.Soft(primary_hue="blue", font="Open Sans")
229
 
230
  with gr.Blocks(theme=theme) as iface:
231
  with gr.Row():
@@ -270,5 +270,7 @@ with gr.Blocks(theme=theme) as iface:
270
  outputs=[output, status],
271
  )
272
 
 
273
  if __name__ == "__main__":
 
274
  iface.launch()
 
225
 
226
 
227
  # Gradio interface
228
+ theme = gr.themes.Soft(primary_hue="blue", font="Open Sans")
229
 
230
  with gr.Blocks(theme=theme) as iface:
231
  with gr.Row():
 
270
  outputs=[output, status],
271
  )
272
 
273
+
274
  if __name__ == "__main__":
275
+ iface = create_gradio_interface()
276
  iface.launch()