Skip to content

Commit 1c0afe8

Browse files
fix: SsmBaseSettings can read case-insensitive env and .env parameters
1 parent 9a079c8 commit 1c0afe8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pydantic_ssm_settings/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def __init__(
4848
# NOTE: Need a direct access to the attributes dictionary to avoid raising an AttributeError: __pydantic_private__ exception
4949
self.__dict__["__ssm_prefix"] = _ssm_prefix
5050
self.__dict__["__ssm_client"] = _ssm_client
51-
super().__init__(self, *args, **kwargs)
51+
super().__init__(*args, **kwargs)
5252

5353
def settings_customise_sources(
5454
self,

0 commit comments

Comments
 (0)