1from enum import Enum
2
3
4class Family(str, Enum):
5    ASPEN = "Aspen"
6
7    def __str__(self) -> str:
8        return str(self.value)
9