chrisclark1016 commited on
Commit
57842a6
·
verified ·
1 Parent(s): 17ebb50

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -140,8 +140,8 @@ with gr.Blocks(title=title, theme=theme) as demo:
140
  IBU = Slider(label="IBU", minimum=0.0, maximum=200, value=41, step=1)
141
  Style = Dropdown(choices=style_choices, label="Beer Style", value='IPA - Session')
142
  BreweryStyle = Dropdown(choices=brewery_style_choices, label="Brewery Style", value='Micro Brewery')
143
- Region = Dropdown(choices=region_choices, label="USA Region", value='Far West')
144
- State = Dropdown(choices=state_choices, label="State", value='CA')
145
  Flavor_Group = CheckboxGroup(choices=flavors_list, label="Flavors")
146
  Hop_Group = CheckboxGroup(choices=hops_list, label="Hops")
147
 
 
140
  IBU = Slider(label="IBU", minimum=0.0, maximum=200, value=41, step=1)
141
  Style = Dropdown(choices=style_choices, label="Beer Style", value='IPA - Session')
142
  BreweryStyle = Dropdown(choices=brewery_style_choices, label="Brewery Style", value='Micro Brewery')
143
+ Region = Dropdown(choices=region_choices, label="USA Region", value='Mideast')
144
+ State = Dropdown(choices=state_choices, label="State", value='VA')
145
  Flavor_Group = CheckboxGroup(choices=flavors_list, label="Flavors")
146
  Hop_Group = CheckboxGroup(choices=hops_list, label="Hops")
147