Since this thing is on the innerwebs I suppose it should have a
[python_utils.git] / type / people.py
index 1dc04214000b74377f1772bac2048ad2cccd853d..521c63babc6afb8d257fd3de4f53aa8a04972aff 100644 (file)
@@ -1,9 +1,15 @@
 #!/usr/bin/env python3
 
+# © Copyright 2021-2022, Scott Gasch
+
+"""An enum to represent people."""
+
 import enum
 
 
 class Person(enum.Enum):
+    """An enum to represent people."""
+
     UNKNOWN = 0
     SCOTT = 1
     LYNN = 2
@@ -11,4 +17,3 @@ class Person(enum.Enum):
     AARON_AND_DANA = 4
     AARON = 4
     DANA = 4
-