cdleong commited on
Commit
a45dd72
1 Parent(s): 2ffcbe6

Forgot to actually concatenate strings

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -40,7 +40,7 @@ def get_lang_description_from_mapping_name(string_to_check, add_original_code= T
40
  description = description + note
41
 
42
  if add_original_code:
43
- description = f"Epitran mapping: {string_to_check}, "
44
  return description
45
 
46
 
 
40
  description = description + note
41
 
42
  if add_original_code:
43
+ description = f"Epitran mapping: {string_to_check}, " + description
44
  return description
45
 
46