from enum import Enum class LogFormat(Enum): """Enum for supported log formats""" TEXT = 'text' JSON = 'json'