Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion aws_lambda_powertools/utilities/parameters/ssm.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ def get_multiple( # type: ignore[override]
sdk_options["decrypt"] = decrypt
sdk_options["recursive"] = recursive

return super().get_multiple(path, max_age, transform, force_fetch, raise_on_transform_error, **sdk_options)
return super().get_multiple(path, max_age, transform, raise_on_transform_error, force_fetch, **sdk_options)

# We break Liskov substitution principle due to differences in signatures of this method and superclass get method
# We ignore mypy error, as changes to the signature here or in a superclass is a breaking change to users
Expand Down