Used isort to sort imports. Also added to the git pre-commit hook.
[python_utils.git] / type / locations.py
1 #!/usr/bin/env python3
2
3 import enum
4
5 @enum.unique
6 class Location(enum.Enum):
7     UNKNOWN = 0
8     HOUSE = 1
9     CABIN = 2