The following class declares variables and their values.
class StaticTileType(Enum):
CHASM = 0
EMPTY = 1
GRASS = 2
EMPTY_WELL = 3
WALL = 4
DOOR = 5
print(StaticTileType(4))
This code prints StaticTileType.DOOR. How can I print/return DOOR only, without the module name?