nightfury commited on
Commit
4f90b25
·
verified ·
1 Parent(s): 1fe8a3b

Update app1.py

Browse files
Files changed (1) hide show
  1. app1.py +8 -9
app1.py CHANGED
@@ -12,15 +12,14 @@ def test(x, request: gr.Request, progress=gr.Progress()):
12
 
13
  with gr.Blocks() as demo:
14
 
15
- with gr.Column(variant="panel") as row:
16
- selected = gr.Dataframe(
17
- interactive=False,
18
- col_count=(1, "fixed"),
19
- headers=["Selected Files"],
20
- )
21
- prog = gr.HTML(
22
- value="<h3 style='text-align: center'> Processing...<h1>"
23
- )
24
  gr.Interface(test, selected, prog)
25
 
26
  t = gr.Textbox()
 
12
 
13
  with gr.Blocks() as demo:
14
 
15
+ selected = gr.Dataframe(
16
+ interactive=False,
17
+ col_count=(1, "fixed"),
18
+ headers=["Selected Files"],
19
+ )
20
+ prog = gr.HTML(
21
+ value="<h3 style='text-align: center'> Processing...<h1>"
22
+ )
 
23
  gr.Interface(test, selected, prog)
24
 
25
  t = gr.Textbox()