summaryrefslogtreecommitdiff
path: root/sphinx/util/stemmer/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'sphinx/util/stemmer/__init__.py')
-rw-r--r--sphinx/util/stemmer/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/util/stemmer/__init__.py b/sphinx/util/stemmer/__init__.py
index 04b37709c..486d86231 100644
--- a/sphinx/util/stemmer/__init__.py
+++ b/sphinx/util/stemmer/__init__.py
@@ -40,7 +40,7 @@ class StandardStemmer(PorterStemmer, BaseStemmer): # type: ignore
"""
def stem(self, word): # type: ignore
# type: (str) -> str
- return super(StandardStemmer, self).stem(word, 0, len(word) - 1)
+ return super().stem(word, 0, len(word) - 1)
def get_stemmer():