summaryrefslogtreecommitdiff
path: root/type/people.py
diff options
context:
space:
mode:
authorScott Gasch <[email protected]>2022-02-10 14:52:14 -0800
committerScott Gasch <[email protected]>2022-02-10 14:52:14 -0800
commit2e8dd08f5f4f9624facf4d38ea6b276cc8131f56 (patch)
tree5d9982185ddb95c76669c594d20c2802e49ce89e /type/people.py
parente76081ebdfa078aa8508ba1682dacea80341157e (diff)
More cleanup.
Diffstat (limited to 'type/people.py')
-rw-r--r--type/people.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/type/people.py b/type/people.py
index 1230db2..3a6f743 100644
--- a/type/people.py
+++ b/type/people.py
@@ -1,9 +1,13 @@
#!/usr/bin/env python3
+"""An enum to represent people."""
+
import enum
-class Person(enum.Enum):
+class Person(enum.IntEnum):
+ """An enum to represent people."""
+
UNKNOWN = 0
SCOTT = 1
LYNN = 2