8 lines
141 B
Python
8 lines
141 B
Python
from enum import Enum
|
|
|
|
class AnalysisResultFormat(Enum):
|
|
JSON = 'json'
|
|
TEXT = 'txt'
|
|
|
|
def __str__(self):
|
|
return self.value |