Spaces:
Sleeping
Sleeping
File size: 192 Bytes
78dd479 | 1 2 3 4 5 6 7 8 9 | from enum import Enum
class TransformWordType(Enum):
ARTICLE = 'article'
MEANING = 'meaning'
PART_OF_SPEECH = 'part-of-speech'
PREPOSITION = 'preposition'
TENSE = 'tense' |