Patt commited on
Commit
fe98b98
1 Parent(s): 961c42d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -5,7 +5,7 @@ translation = pipeline("translation", "Shularp/krirk-finetuned-Helsinki-NLP_opus
5
 
6
  def translate(text):
7
  results = translation(text)
8
- return result[0]["translation_text"]
9
 
10
 
11
 
 
5
 
6
  def translate(text):
7
  results = translation(text)
8
+ return results[0]["translation_text"]
9
 
10
 
11