from enum import Enum [docs] class PostEffectType(str, Enum): """Post effect type""" # noqa: E501 PHOSPHOR = "phosphor" SSAO = "ssao" NOEFFECT = "noeffect" [docs] def __str__(self) -> str: return str(self.value)