c2p-cmd commited on
Commit
7e8f329
·
verified ·
1 Parent(s): 8a4fd98

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -59,7 +59,7 @@ with gr.Blocks() as interface:
59
  with gr.Column():
60
  input_file = gr.File(label="Watchface file", file_count='single', file_types=['watchface'])
61
 
62
- single_button = gr.Button(label="Extract", variant="primary")
63
 
64
  with gr.Column():
65
  output_1 = gr.Image(label='Bordered Output', type='filepath')
@@ -70,7 +70,7 @@ with gr.Blocks() as interface:
70
  input_files = gr.File(label="Watchface file", file_count='multiple', file_types=['watchface'])
71
  output_kind_choice = gr.Dropdown(choices=output_kind, value=output_kind[0], label="Output kind for Watchface")
72
 
73
- button = gr.Button(label="Extract", variant="primary")
74
 
75
  output_gallery = gr.Gallery(label='Output Images')
76
 
 
59
  with gr.Column():
60
  input_file = gr.File(label="Watchface file", file_count='single', file_types=['watchface'])
61
 
62
+ single_button = gr.Button("Extract", variant="primary")
63
 
64
  with gr.Column():
65
  output_1 = gr.Image(label='Bordered Output', type='filepath')
 
70
  input_files = gr.File(label="Watchface file", file_count='multiple', file_types=['watchface'])
71
  output_kind_choice = gr.Dropdown(choices=output_kind, value=output_kind[0], label="Output kind for Watchface")
72
 
73
+ button = gr.Button("Extract", variant="primary")
74
 
75
  output_gallery = gr.Gallery(label='Output Images')
76