From 52ad5a3e8e16951baf44a2881c4c1672019457b7 Mon Sep 17 00:00:00 2001 From: Emir Karamehmetoglu Date: Thu, 5 Jun 2025 17:07:47 +0200 Subject: [PATCH] Update Extendable.py str_to_lower doesn't work as expected. Essentially, it does it after validation and we don't always want this. --- adaptive_cards_python/adaptive_card/Extendable.py | 1 - 1 file changed, 1 deletion(-) diff --git a/adaptive_cards_python/adaptive_card/Extendable.py b/adaptive_cards_python/adaptive_card/Extendable.py index ea9dab5..17af07e 100644 --- a/adaptive_cards_python/adaptive_card/Extendable.py +++ b/adaptive_cards_python/adaptive_card/Extendable.py @@ -10,7 +10,6 @@ class ConfiguredBaseModel(BaseModel): alias_generator=to_camel, populate_by_name=True, str_strip_whitespace=True, - str_to_lower=True, )