Skip to content

Commit

Permalink
removed commented out print
Browse files Browse the repository at this point in the history
  • Loading branch information
chrislit committed Jan 24, 2019
1 parent 21229b9 commit 182de2d
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion abydos/distance/_levenshtein.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,6 @@ def __init__(
self._taper_enabled = taper

def _taper(self, pos, length):
# print(pos, length, max(0,1+((length-pos)/length)*1.0001))
return (
round(1 + ((length - pos) / length) * 1.0001, 5)
if self._taper_enabled
Expand Down

0 comments on commit 182de2d

Please sign in to comment.