cdleong commited on
Commit
bfca28f
1 Parent(s): 62383b9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -16,7 +16,7 @@ if __name__ == "__main__":
16
 
17
  input_text = st.text_area(label="Whatever you type here will be transliterated!", value="Gari langu linaloangama limejaa na mikunga")
18
 
19
- combined_code = "-".join(iso_lang_code, iso_script_code)
20
  st.write(f"Combined code: {combined_code}")
21
  st.info("attempting to instantiate epitran transliterator for your language/script")
22
  epi = epitran.Epitran(combined_code)
 
16
 
17
  input_text = st.text_area(label="Whatever you type here will be transliterated!", value="Gari langu linaloangama limejaa na mikunga")
18
 
19
+ combined_code = "-".join([iso_lang_code, iso_script_code])
20
  st.write(f"Combined code: {combined_code}")
21
  st.info("attempting to instantiate epitran transliterator for your language/script")
22
  epi = epitran.Epitran(combined_code)