Skip to content

Commit 6c6a8f2

Browse files
Make mypy happy
1 parent bd3495e commit 6c6a8f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

aws_lambda_powertools/utilities/parameters/dynamodb.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -230,4 +230,4 @@ def _get_multiple(self, path: str, **sdk_options) -> dict[str, str]:
230230

231231
# maintenance: look for better ways to correctly type DynamoDB multiple return types
232232
# without a breaking change within ABC return type
233-
return {item[self.sort_attr]: item[self.value_attr] for item in items}
233+
return {item[self.sort_attr]: item[self.value_attr] for item in items} # type: ignore[misc]

0 commit comments

Comments
 (0)