summaryrefslogtreecommitdiff
path: root/type/people.py
diff options
context:
space:
mode:
authorScott <[email protected]>2021-12-06 15:43:17 -0800
committerScott <[email protected]>2021-12-06 15:43:17 -0800
commitba223f821df1e9b8abbb6f6d23d5ba92c5a70b05 (patch)
tree637aa43cfa5049ddf07eea3c2ec9ff51ec1be2d8 /type/people.py
parent4f11c12a1afb209eb1ba52a4632c5f49234cc0dc (diff)
Move stuff around.
Diffstat (limited to 'type/people.py')
-rw-r--r--type/people.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/type/people.py b/type/people.py
new file mode 100644
index 0000000..1dc0421
--- /dev/null
+++ b/type/people.py
@@ -0,0 +1,14 @@
+#!/usr/bin/env python3
+
+import enum
+
+
+class Person(enum.Enum):
+ UNKNOWN = 0
+ SCOTT = 1
+ LYNN = 2
+ ALEX = 3
+ AARON_AND_DANA = 4
+ AARON = 4
+ DANA = 4
+