We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0aef100 commit de71882Copy full SHA for de71882
aws_lambda_powertools/utilities/idempotency/persistence/dynamodb.py
@@ -174,7 +174,7 @@ def _put_record(self, data_record: DataRecord) -> None:
174
"#now": self.expiry_attr,
175
"#status": self.status_attr,
176
}
177
- expression_attribute_values = {":now": int(now.timestamp())}
+ expression_attribute_values: Dict[str, Any] = {":now": int(now.timestamp())}
178
179
# When we want to expire_in_progress invocations, we check if the in_progress timestamp exists
180
# and we are past that timestamp. We also make sure the status is INPROGRESS because we don't
0 commit comments