projects
/
python_utils.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d2e437a
)
IntEnum -> Enum to fix printing of enum values.
author
Scott Gasch
<scott@gasch.org>
Mon, 7 Mar 2022 07:13:50 +0000
(23:13 -0800)
committer
Scott Gasch
<scott@gasch.org>
Mon, 7 Mar 2022 07:13:50 +0000
(23:13 -0800)
type/locations.py
patch
|
blob
|
history
type/people.py
patch
|
blob
|
history
diff --git
a/type/locations.py
b/type/locations.py
index 718a5f1edd5d277e71ff3204a7d273617d581741..e02b8ab8e5652c088a94f5b6d30acc3f399b9caf 100644
(file)
--- a/
type/locations.py
+++ b/
type/locations.py
@@
-6,7
+6,7
@@
import enum
@enum.unique
-class Location(enum.
Int
Enum):
+class Location(enum.Enum):
"""An enum to represent locations."""
UNKNOWN = 0
diff --git
a/type/people.py
b/type/people.py
index 3a6f743342f0d0c84f3eb139e5a5ebf16bab1553..d942ebb9ce8c3e4417d67f13d2fa23bf90d10a45 100644
(file)
--- a/
type/people.py
+++ b/
type/people.py
@@
-5,7
+5,7
@@
import enum
-class Person(enum.
Int
Enum):
+class Person(enum.Enum):
"""An enum to represent people."""
UNKNOWN = 0