types.py
1 """Preprocessor types.""" 2 3 from enum import Enum 4 5 6 class PreprocessorType(str, Enum): 7 """Preprocessor type enumeration.""" 8 9 RAPIDFUZZ = "rapidfuzz" 10
1 """Preprocessor types.""" 2 3 from enum import Enum 4 5 6 class PreprocessorType(str, Enum): 7 """Preprocessor type enumeration.""" 8 9 RAPIDFUZZ = "rapidfuzz" 10