2022-03-31 17:22:54 +02:00

11 lines
263 B
Python

from enum import Enum
from typing import List
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