summaryrefslogtreecommitdiffstats
path: root/sphinx/search/tr.py
diff options
context:
space:
mode:
Diffstat (limited to 'sphinx/search/tr.py')
-rw-r--r--sphinx/search/tr.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/search/tr.py b/sphinx/search/tr.py
index f4a865c..fdfc18a 100644
--- a/sphinx/search/tr.py
+++ b/sphinx/search/tr.py
@@ -15,7 +15,7 @@ class SearchTurkish(SearchLanguage):
js_stemmer_rawcode = 'turkish-stemmer.js'
stopwords: set[str] = set()
- def init(self, options: dict) -> None:
+ def init(self, options: dict[str, str]) -> None:
self.stemmer = snowballstemmer.stemmer('turkish')
def stem(self, word: str) -> str: