We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d9c63b commit c76dfeaCopy full SHA for c76dfea
aws_lambda_powertools/utilities/idempotency/persistence/dynamodb.py
@@ -154,7 +154,7 @@ def _update_record(self, data_record: DataRecord):
154
"ExpressionAttributeNames": expression_attr_names,
155
}
156
157
- self.table.update_item(**kwargs)
+ self.table.update_item(**kwargs) # type: ignore
158
159
def _delete_record(self, data_record: DataRecord) -> None:
160
logger.debug(f"Deleting record for idempotency key: {data_record.idempotency_key}")
0 commit comments