Fix typo.
[python_utils.git] / type / locations.py
index 744f63a3997f38b26b379b7bf25d19425ec7d2f3..b311064a680bf87350949c419e36bd9a474816ae 100644 (file)
@@ -1,9 +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