prashant
commited on
Commit
•
dd2ea3c
1
Parent(s):
58a94cf
adding caption
Browse files
appStore/keyword_search.py
CHANGED
@@ -72,6 +72,7 @@ def app():
|
|
72 |
keywordexample = json.load(json_file)
|
73 |
|
74 |
# genre = st.radio("Select Keyword Category", list(keywordexample.keys()))
|
|
|
75 |
genre = checkbox_without_preselect(list(keywordexample.keys()))
|
76 |
if genre:
|
77 |
keywordList = keywordexample[genre]
|
|
|
72 |
keywordexample = json.load(json_file)
|
73 |
|
74 |
# genre = st.radio("Select Keyword Category", list(keywordexample.keys()))
|
75 |
+
st.caption("Select Keyword Category")
|
76 |
genre = checkbox_without_preselect(list(keywordexample.keys()))
|
77 |
if genre:
|
78 |
keywordList = keywordexample[genre]
|