diff options
Diffstat (limited to '')
-rw-r--r-- | sphinx/search/en.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/search/en.py b/sphinx/search/en.py index caa6f66..a1f06bd 100644 --- a/sphinx/search/en.py +++ b/sphinx/search/en.py @@ -213,7 +213,7 @@ class SearchEnglish(SearchLanguage): js_stemmer_code = js_porter_stemmer stopwords = english_stopwords - def init(self, options: dict) -> None: + def init(self, options: dict[str, str]) -> None: self.stemmer = snowballstemmer.stemmer('porter') def stem(self, word: str) -> str: |