diff options
author | Adam Turner <9087854+AA-Turner@users.noreply.github.com> | 2023-01-02 00:01:14 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-02 00:01:14 +0000 |
commit | 4032070e8131f518bbb8a04e8d63c5af4df9b59d (patch) | |
tree | 47b14f58d5337448e8358029264ebcd6d1ae7351 /sphinx/search/it.py | |
parent | ede68fa423107fbab74d07b307d7dcb03c00dfbd (diff) | |
download | sphinx-git-4032070e8131f518bbb8a04e8d63c5af4df9b59d.tar.gz |
Run pyupgrade (#11070)
Diffstat (limited to 'sphinx/search/it.py')
-rw-r--r-- | sphinx/search/it.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/search/it.py b/sphinx/search/it.py index 55e2f01e9..2f6cde8d2 100644 --- a/sphinx/search/it.py +++ b/sphinx/search/it.py @@ -309,7 +309,7 @@ class SearchItalian(SearchLanguage): js_stemmer_rawcode = 'italian-stemmer.js' stopwords = italian_stopwords - def init(self, options: Dict) -> None: + def init(self, options: dict) -> None: self.stemmer = snowballstemmer.stemmer('italian') def stem(self, word: str) -> str: |