Marco
commited on
Commit
·
7116a22
1
Parent(s):
31e7610
update spell checker
Browse files- src/utilities.py +1 -1
src/utilities.py
CHANGED
@@ -10,7 +10,7 @@ from src.st_context import with_streamlit_context
|
|
10 |
class Utilities:
|
11 |
def __init__(self):
|
12 |
# Initialize the spell checker
|
13 |
-
self.spell = SpellChecker()
|
14 |
|
15 |
def fetch_likely_text(self):
|
16 |
"""Fetches likely text based on latest OCR values."""
|
|
|
10 |
class Utilities:
|
11 |
def __init__(self):
|
12 |
# Initialize the spell checker
|
13 |
+
self.spell = SpellChecker(language="en")
|
14 |
|
15 |
def fetch_likely_text(self):
|
16 |
"""Fetches likely text based on latest OCR values."""
|