From aafff02b39943f0367f98b6459287db0239cf1e6 Mon Sep 17 00:00:00 2001 From: Chris Little Date: Wed, 27 May 2015 02:12:44 -0700 Subject: [PATCH] disabled too-many-locals for lovins stemmer --- abydos/stemmer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/abydos/stemmer.py b/abydos/stemmer.py index 6cede7827..feb7a5de0 100644 --- a/abydos/stemmer.py +++ b/abydos/stemmer.py @@ -42,7 +42,7 @@ def lovins(word): :returns: word stem :rtype: string """ - # pylint: disable=too-many-branches + # pylint: disable=too-many-branches, too-many-locals # lowercase, normalize, and compose word = unicodedata.normalize('NFC', _unicode(word.lower()))