from enum import Enum [docs]class TripPhase(Enum): """ the phases of a Trip """ PICKUP = 0 DROPOFF = 1