From 60b3e0d39a4eae921de4d2b9c372e6be338afc8e Mon Sep 17 00:00:00 2001 From: mcarans Date: Wed, 2 Oct 2024 17:10:53 +1300 Subject: [PATCH] Remove DisabledMarker enum --- src/hapi_schema/utils/enums.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/hapi_schema/utils/enums.py b/src/hapi_schema/utils/enums.py index b67c5aa..f86de67 100644 --- a/src/hapi_schema/utils/enums.py +++ b/src/hapi_schema/utils/enums.py @@ -28,12 +28,6 @@ class DTMAssessmentType(str, PythonEnum): SITE = "SA" -class DisabledMarker(str, PythonEnum): - YES = "y" - NO = "n" - ALL = "all" - - class EventType(str, PythonEnum): CIVILIAN_TARGETING = "civilian_targeting" DEMONSTRATION = "demonstration"