b311064a680bf87350949c419e36bd9a474816ae
[python_utils.git] / type / locations.py
1 #!/usr/bin/env python3
2
3 # © Copyright 2021-2022, Scott Gasch
4
5 """An enum to represent locations."""
6
7 import enum
8
9
10 @enum.unique
11 class Location(enum.Enum):
12     """An enum to represent locations."""
13
14     UNKNOWN = 0
15     HOUSE = 1
16     CABIN = 2