Fix typo.
[python_utils.git] / type / locations.py
index 24ab063a722d5b159be380ffb459cabcd5d35d23..b311064a680bf87350949c419e36bd9a474816ae 100644 (file)
@@ -1,10 +1,16 @@
 #!/usr/bin/env python3
 
+# © Copyright 2021-2022, Scott Gasch
+
+"""An enum to represent locations."""
+
 import enum
 
 
 @enum.unique
 class Location(enum.Enum):
+    """An enum to represent locations."""
+
     UNKNOWN = 0
     HOUSE = 1
     CABIN = 2