leavoigt commited on
Commit
7121e85
·
1 Parent(s): 3563d85

change interface

Browse files
Files changed (1) hide show
  1. app.py +5 -2
app.py CHANGED
@@ -6,11 +6,14 @@ from utils.main_processor import get_statistics
6
  # Interface
7
  with gr.Blocks() as ui:
8
 
 
 
 
9
  with gr.Row():
10
  with gr.Column():
11
- file_input = gr.File(file_types=[".geojson"])
12
  submit_btn = gr.Button("Submit")
13
- with gr.Column():
 
14
  output = gr.Dataframe()
15
 
16
 
 
6
  # Interface
7
  with gr.Blocks() as ui:
8
 
9
+ with gr.Row():
10
+ file_input = gr.File(file_types=[".geojson"])
11
+
12
  with gr.Row():
13
  with gr.Column():
 
14
  submit_btn = gr.Button("Submit")
15
+
16
+ with gr.Row():
17
  output = gr.Dataframe()
18
 
19