rameshmoorthy commited on
Commit
492d55e
·
verified ·
1 Parent(s): e7f020c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -41,11 +41,11 @@ with gr.Blocks() as cluster:
41
  with gr.Row():
42
 
43
 
44
- gr.HTML(html_content="""<h1 style="color: #3399FF; text-shadow: 1px 1px 2px #ddd;">PANDAS REPORT</h1>""")
45
  out1=gr.File(label="Download CSV")
46
- gr.HTML(html_content="""<h1 style="color: #3399FF; text-shadow: 1px 1px 2px #ddd;">DATAPREP REPORT</h1>""")
47
  out2=gr.File(label="Download CSV")
48
- gr.HTML(html_content="""<h1 style="color: #3399FF; text-shadow: 1px 1px 2px #ddd;">SWEETVIZ REPORT</h1>""")
49
  out3=gr.File(label="Download CSV")
50
  btn.click(generate_report,inputs=[file,type],outputs=[out1,out3])
51
  cluster.launch()
 
41
  with gr.Row():
42
 
43
 
44
+ gr.HTML(value="""<h1 style="color: #3399FF; text-shadow: 1px 1px 2px #ddd;">PANDAS REPORT</h1>""")
45
  out1=gr.File(label="Download CSV")
46
+ gr.HTML(value="""<h1 style="color: #3399FF; text-shadow: 1px 1px 2px #ddd;">DATAPREP REPORT</h1>""")
47
  out2=gr.File(label="Download CSV")
48
+ gr.HTML(value="""<h1 style="color: #3399FF; text-shadow: 1px 1px 2px #ddd;">SWEETVIZ REPORT</h1>""")
49
  out3=gr.File(label="Download CSV")
50
  btn.click(generate_report,inputs=[file,type],outputs=[out1,out3])
51
  cluster.launch()