Source code for kittycad.models.image_type

from enum import Enum


[docs]class ImageType(str, Enum): """An enumeration.""" # noqa: E501 PNG = "png" JPG = "jpg"
[docs] def __str__(self) -> str: return str(self.value)