radames commited on
Commit
6e13ec2
·
1 Parent(s): 7f4c4b6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -7,7 +7,7 @@ speller = enchant.Dict("en_US")
7
 
8
 
9
  def predict(text):
10
- return speller.suggest(text)
11
 
12
  with block:
13
  text_input = gr.Text()
 
7
 
8
 
9
  def predict(text):
10
+ return [speller.suggest(text)]
11
 
12
  with block:
13
  text_input = gr.Text()