Andreagus commited on
Commit
a333d2d
1 Parent(s): 49c05b3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -10,7 +10,7 @@ model_selected = st.radio("Choose your model", ["fin_distilBert", "fin_tinyBert"
10
  ticker = st.text_input("Insert the company ticker")
11
 
12
  col1, col2 = st.columns(2)
13
- if model_selected != None and ticker != None:
14
 
15
  st.write("You chose", model_selected)
16
 
 
10
  ticker = st.text_input("Insert the company ticker")
11
 
12
  col1, col2 = st.columns(2)
13
+ if model_selected != None and ticker:
14
 
15
  st.write("You chose", model_selected)
16