from enum import Enum class UnitMagneticFluxFormat(str, Enum): """The valid types of magnetic flux unit formats.""" # noqa: E501 """# """ # noqa: E501 WEBER = "weber" """# """ # noqa: E501 MAXWELL = "maxwell" def __str__(self) -> str: return str(self.value)