BenDaouda commited on
Commit
ebb0db0
1 Parent(s): 17fb6fa

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -1026,7 +1026,7 @@ def word_to_tel(word):
1026
  for w in word_list:
1027
  if w not in french_number_system:
1028
  return None
1029
- out = out+" "+str(french_number_system[w])
1030
  return out
1031
 
1032
  # Utilisez la fonction Gradio avec votre modèle chargé
 
1026
  for w in word_list:
1027
  if w not in french_number_system:
1028
  return None
1029
+ out = out+str(french_number_system[w])
1030
  return out
1031
 
1032
  # Utilisez la fonction Gradio avec votre modèle chargé