From c0e53c0877e9093d62a1e8119340ee8786928d94 Mon Sep 17 00:00:00 2001 From: Jonathan Karr Date: Mon, 14 Feb 2022 17:57:07 -0500 Subject: [PATCH] fix: fixed capitalization of dashDot enumeration --- biosimulators_utils/sedml/data_model.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/biosimulators_utils/sedml/data_model.py b/biosimulators_utils/sedml/data_model.py index a3fc729b..527bc36e 100644 --- a/biosimulators_utils/sedml/data_model.py +++ b/biosimulators_utils/sedml/data_model.py @@ -1709,7 +1709,7 @@ class LineStyleType(str, enum.Enum): solid = 'solid' dash = 'dash' dot = 'dot' - dashDot = 'dashdot' + dashDot = 'dashDot' dashDotDot = 'dashDotDot'