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/parser/envelopes/sqs.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class SqsEnvelope(BaseEnvelope):
Regardless of its type it'll be parsed into a BaseModel object.

Note: Records will be parsed the same way so if model is str,
all items in the list will be parsed as str and npt as JSON (and vice versa)
all items in the list will be parsed as str and not as JSON (and vice versa)
"""

def parse(self, data: dict[str, Any] | Any | None, model: type[Model]) -> list[Model | None]:
Expand Down
Loading