summaryrefslogtreecommitdiff
path: root/type/people.py
diff options
context:
space:
mode:
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