From 415674b9b520c4527a49370bff3a3bfb7b7d9e28 Mon Sep 17 00:00:00 2001 From: Chris <129191062+guitarguy74@users.noreply.github.com> Date: Thu, 9 Oct 2025 11:38:05 -0400 Subject: [PATCH] Update containers.py Removed duplicate horizontalAlignment from simple_properties and descriptive comments in ColumnSet class. Added horizontalAlignment to simple_properties of Container class. --- src/webexpythonsdk/models/cards/containers.py | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/src/webexpythonsdk/models/cards/containers.py b/src/webexpythonsdk/models/cards/containers.py index a465a7d..357f5c3 100644 --- a/src/webexpythonsdk/models/cards/containers.py +++ b/src/webexpythonsdk/models/cards/containers.py @@ -501,6 +501,7 @@ def __init__( "minHeight", *([] if hasattr(fallback, "to_dict") else ["fallback"]), "height", + "horizontalAlignment", "separator", "spacing", "id", @@ -578,13 +579,6 @@ def __init__( height (BlockElementHeight, Optional): Specifies the height of the element. **_Defaults to None._** Allowed value(s): BlockElementHeight.AUTO or BlockElementHeight.STRETCH - horizontalAlignment (HorizontalAlignment, Optional): Controls the - horizontal alignment of the ColumnSet. When not specified, the - value of horizontalAlignment is inherited from the parent - container. If no parent container has horizontalAlignment set, - it defaults to Left. Allowed value(s): - HorizontalAlignment.LEFT, HorizontalAlignment.CENTER, or - HorizontalAlignment.RIGHT separator (bool, Optional): When true, draw a separating line at the top of the element. **_Defaults to None._** spacing (Spacing, Optional): Controls the amount of spacing @@ -740,7 +734,6 @@ def __init__( "horizontalAlignment", *([] if hasattr(fallback, "to_dict") else ["fallback"]), "height", - "horizontalAlignment", "separator", "spacing", "id",