From 1c0afe8f13328430070cbf150e78ba3c5c1e021f Mon Sep 17 00:00:00 2001 From: Keith Ma Date: Thu, 11 Sep 2025 14:48:40 -0400 Subject: [PATCH] fix: SsmBaseSettings can read case-insensitive env and .env parameters --- pydantic_ssm_settings/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pydantic_ssm_settings/settings.py b/pydantic_ssm_settings/settings.py index 1bd9ee5..4369e45 100644 --- a/pydantic_ssm_settings/settings.py +++ b/pydantic_ssm_settings/settings.py @@ -48,7 +48,7 @@ def __init__( # NOTE: Need a direct access to the attributes dictionary to avoid raising an AttributeError: __pydantic_private__ exception self.__dict__["__ssm_prefix"] = _ssm_prefix self.__dict__["__ssm_client"] = _ssm_client - super().__init__(self, *args, **kwargs) + super().__init__(*args, **kwargs) def settings_customise_sources( self,