Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -85,7 +85,7 @@ with st.sidebar:
|
|
85 |
list_skills = []
|
86 |
for i in sorted(set(df1['Необходимые навыки'])):
|
87 |
skill = st.checkbox(i, key=f"{i}")
|
88 |
-
if skill:
|
89 |
list_skills.append(i)
|
90 |
|
91 |
# python = st.checkbox("Python", key=f"{i+1}mlr")
|
|
|
85 |
list_skills = []
|
86 |
for i in sorted(set(df1['Необходимые навыки'])):
|
87 |
skill = st.checkbox(i, key=f"{i}")
|
88 |
+
if skill != '-':
|
89 |
list_skills.append(i)
|
90 |
|
91 |
# python = st.checkbox("Python", key=f"{i+1}mlr")
|