From 34b4fd44a42b35aea09a0412457de26a35b2b771 Mon Sep 17 00:00:00 2001 From: caila-marashaj Date: Wed, 14 Aug 2024 15:59:03 -0400 Subject: [PATCH] spherical segment should go in the bottom shape union --- shared-data/python/opentrons_shared_data/labware/types.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shared-data/python/opentrons_shared_data/labware/types.py b/shared-data/python/opentrons_shared_data/labware/types.py index c92c9d04dec..8a6135de8f9 100644 --- a/shared-data/python/opentrons_shared_data/labware/types.py +++ b/shared-data/python/opentrons_shared_data/labware/types.py @@ -136,7 +136,7 @@ class SphericalSegment(TypedDict): TopCrossSection = Union[CircularCrossSection, RectangularCrossSection] -BottomShape = Union[CircularCrossSection, RectangularCrossSection, Spherical] +BottomShape = Union[CircularCrossSection, RectangularCrossSection, SphericalSegment] class BoundedSection(TypedDict):