mr2along commited on
Commit
52415e2
1 Parent(s): 83632fe

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -71,8 +71,8 @@ def transcribe_audio(audio):
71
  # Function to get IPA transcription
72
  def ipa_transcription(sentence):
73
  try:
74
- ipa = ipa.convert(sentence)
75
- return ipa
76
  except Exception as e:
77
  return f"Error during IPA transcription: {e}"
78
 
 
71
  # Function to get IPA transcription
72
  def ipa_transcription(sentence):
73
  try:
74
+ ipa_text = ipa.convert(sentence)
75
+ return ipa_text
76
  except Exception as e:
77
  return f"Error during IPA transcription: {e}"
78