Quentin Lhoest commited on
Commit
8a15017
1 Parent(s): fcd2e79
Files changed (1) hide show
  1. tagging_app.py +1 -1
tagging_app.py CHANGED
@@ -377,7 +377,7 @@ leftcol.markdown("### Tags")
377
  tags_text_area = leftcol.text_area(
378
  "What are the additional keywords one can use to find this dataset ? "
379
  "expected format is a list of keywords separated by ';' "
380
- "e.g. 'bio;research papers' or 'newspaper;1800-1900'"
381
  )
382
  state["tags"] = [tag.strip() for tag in tags_text_area.strip(";").split(";")] if tags_text_area.strip(" ;") else []
383
 
 
377
  tags_text_area = leftcol.text_area(
378
  "What are the additional keywords one can use to find this dataset ? "
379
  "expected format is a list of keywords separated by ';' "
380
+ "e.g. 'bio;research papers' or 'newspapers;1800-1900'"
381
  )
382
  state["tags"] = [tag.strip() for tag in tags_text_area.strip(";").split(";")] if tags_text_area.strip(" ;") else []
383