bradley6597 commited on
Commit
0c727e8
·
1 Parent(s): 35b670b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -7,7 +7,7 @@ dictionary = pd.read_csv("corncob_lowercase.txt",
7
 
8
  def spell_bee_solver(no_centre, centre):
9
  print(centre)
10
- spell_bee_solver = dictionary[dictionary['word'].str.contains(centre, regex = False)]
11
  return(spell_bee_solver)
12
 
13
  with gr.Blocks() as app:
 
7
 
8
  def spell_bee_solver(no_centre, centre):
9
  print(centre)
10
+ spell_bee_solver = dictionary[dictionary['word'].str.contains(str(centre), regex = False)]
11
  return(spell_bee_solver)
12
 
13
  with gr.Blocks() as app: