from enum import Enum [docs] class WavelengthUnit(str, Enum): """ Enum to represent the bandpass wavelength """ [docs] NANOMETER = "nm" [docs] ANGSTROM = "angstrom" [docs] MICRON = "um" [docs] MILLIMETER = "mm"