This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sys | |
from rapidfuzz import process | |
# Translate typos made by rigsters989 in [GNOME] NA to | |
# a slightly more recognizable version of English. | |
def small(w, size=4): | |
'''Assume that Rigs probably won't spell really small words wrong.''' | |
return len(w) <= 4 |
OlderNewer