profnecrya commited on
Commit
b337856
·
1 Parent(s): e035d6c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -35,7 +35,7 @@ def get_matches(text):
35
  try:
36
  ##return(difflib.get_close_matches(text, dictionary)) #[0].replace("\n", "")
37
  for x in range(queue):
38
- output=output+textR[countl]+": "+str(difflib.get_close_matches(textR[countl], dictionary))+"\n"
39
  if countl<=queue:
40
  countl+=1
41
  if countl>=queue:
 
35
  try:
36
  ##return(difflib.get_close_matches(text, dictionary)) #[0].replace("\n", "")
37
  for x in range(queue):
38
+ output=output+str(textR[countl])+": "+str(difflib.get_close_matches(textR[countl], dictionary))+"\n"
39
  if countl<=queue:
40
  countl+=1
41
  if countl>=queue: