Skip to content
This repository was archived by the owner on Mar 23, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
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 localstack-core/localstack/aws/protocol/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -1032,7 +1032,7 @@ def parse_data_item(self, stream: io.BufferedReader) -> Any:
return method(stream, additional_info)
else:
raise ProtocolParserError(
f"Unsupported inital byte found for data item- "
f"Unsupported initial byte found for data item- "
f"Major type:{major_type}, Additional info: "
f"{additional_info}"
)
Expand Down
2 changes: 1 addition & 1 deletion scripts/metrics_coverage/diff_metrics_coverage.py
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ def create_readable_report(
if additional_test_details:
fd.write(" <h2>Additional Test Coverage</h2>\n")
fd.write(
"<div> Note: this is probalby wrong usage of the script. It includes operations that have been covered with the acceptance tests only"
"<div> Note: this is probably wrong usage of the script. It includes operations that have been covered with the acceptance tests only"
)
fd.write(f"<p>{additional_test_details}</p></div>\n")
fd.write("</body></html>")
Expand Down
Loading