From d8a4cb8c9f641d2e64f7416a35fd33fded92d67a Mon Sep 17 00:00:00 2001 From: Scott Gasch Date: Sun, 6 Mar 2022 23:13:50 -0800 Subject: IntEnum -> Enum to fix printing of enum values. --- type/locations.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'type/locations.py') diff --git a/type/locations.py b/type/locations.py index 718a5f1..e02b8ab 100644 --- a/type/locations.py +++ b/type/locations.py @@ -6,7 +6,7 @@ import enum @enum.unique -class Location(enum.IntEnum): +class Location(enum.Enum): """An enum to represent locations.""" UNKNOWN = 0 -- cgit v1.3