"""Time enum.""" from enum import IntEnum, auto class Time(IntEnum): """Time enum.""" Both = auto() Day = auto() Night = auto()