2022-03-31 17:25:42 +02:00

10 lines
239 B
Python

from enum import Enum
from image_prediction.formatter.formatters.key_formatter import KeyFormatter
class EnumFormatter(KeyFormatter):
@staticmethod
def format_key(key):
return key.value if isinstance(key, Enum) else key