from enum import Enum [docs] class DepthUnit(str, Enum): """ Enum to represent the astronomical depth types """ [docs] AB_MAG = "ab_mag" [docs] VEGA_MAG = "vega_mag" [docs] FLUX_ERG = "flux_erg" [docs] FLUX_JY = "flux_jy"