TenzinGayche commited on
Commit
10943f9
·
verified ·
1 Parent(s): d5c0bfd

Update flores200_codes.py

Browse files
Files changed (1) hide show
  1. flores200_codes.py +7 -8
flores200_codes.py CHANGED
@@ -1,10 +1,9 @@
1
- codes_as_string = '''Standard Tibetan bod_Tibt
2
- English eng_Latn
3
- '''
4
 
5
- codes_as_string = codes_as_string.split('\n')
 
 
 
6
 
7
- flores_codes = {}
8
- for code in codes_as_string:
9
- lang, lang_code = code.split('\t')
10
- flores_codes[lang] = lang_code
 
 
 
 
1
 
2
+ flores_codes={
3
+ "Standard Tibetan":"bod_Tibt",
4
+ "English":"eng_Latn"
5
+ }
6
 
7
+
8
+
9
+