From e43f96c4ac6fecf6a899d2f7633a566abb3a21ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=82=B9=E3=82=B3=E3=83=83=E3=83=88?= Date: Fri, 12 Apr 2024 18:59:48 -0400 Subject: [PATCH] hotfix enum case (#24) --- cdr_schemas/area_extraction.py | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/cdr_schemas/area_extraction.py b/cdr_schemas/area_extraction.py index e3c6821..7bc4bd5 100644 --- a/cdr_schemas/area_extraction.py +++ b/cdr_schemas/area_extraction.py @@ -7,15 +7,15 @@ class AreaType(str, Enum): - Map_Area = "Map_Area" - Legend_Area = "Legend_Area" - CrossSection = "CrossSection" - OCR = "OCR" - Polygon_Legend_Area = "Polygon_Legend_Area" - Line_Point_Legend_Area = "Line_Point_Legend_Area" - Line_Legend_Area = "Line_Legend_Area" - Point_Legend_Area = "Point_Legend_Area" - Correlation_Diagram = "Correlation_Diagram" + Map_Area = "map_area" + Legend_Area = "legend_area" + CrossSection = "cross_section" + OCR = "ocr" + Polygon_Legend_Area = "polygon_legend_area" + Line_Point_Legend_Area = "line_point_legend_area" + Line_Legend_Area = "line_legend_area" + Point_Legend_Area = "point_legend_area" + Correlation_Diagram = "correlation_diagram" class Area_Extraction(BaseModel):