Skip to content

Commit

Permalink
disabled too-many-locals for lovins stemmer
Browse files Browse the repository at this point in the history
  • Loading branch information
chrislit committed May 27, 2015
1 parent 8908385 commit aafff02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion abydos/stemmer.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()))
Expand Down

0 comments on commit aafff02

Please sign in to comment.