SebastianoMeneghin commited on
Commit
08ce35b
·
1 Parent(s): afa19d2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -67,7 +67,8 @@ flights = gr.Interface(
67
  [
68
  gr.Radio(["today", "tomorrow"], type="value", label="Day", info="When do you have the plane?"),
69
  gr.Slider(0, 50, value=20, label="Possible Delay", info="How unfortunate do you wanna be?"),
70
- gr.Row(gr.Number(precision=0, minimum=0, maximum=23, label="Departure Time"), gr.Radio(["am", "pm"], type="index", info="It's the same, no worries!")),
 
71
  gr.CheckboxGroup(["Yes, it's cloudy", "I am not in Stockholm"], label="Weather", info="Is it a typical Stockholm day?"),
72
  gr.Dropdown(get_possible_destinations() + ["That's a reason why I travel alone...", "I prefer not to say"],
73
  type = "value", multiselect=True, label="Destination", value=["That's a reason why I travel alone..."],
 
67
  [
68
  gr.Radio(["today", "tomorrow"], type="value", label="Day", info="When do you have the plane?"),
69
  gr.Slider(0, 50, value=20, label="Possible Delay", info="How unfortunate do you wanna be?"),
70
+ gr.Number(precision=0, minimum=0, maximum=23, label="Departure Time")
71
+ gr.Radio(["am", "pm"], type="index", info="It's the same, no worries!"),
72
  gr.CheckboxGroup(["Yes, it's cloudy", "I am not in Stockholm"], label="Weather", info="Is it a typical Stockholm day?"),
73
  gr.Dropdown(get_possible_destinations() + ["That's a reason why I travel alone...", "I prefer not to say"],
74
  type = "value", multiselect=True, label="Destination", value=["That's a reason why I travel alone..."],