Skip to content
This repository was archived by the owner on Mar 23, 2026. It is now read-only.

Commit 7dd32ab

Browse files
committed
Fix CloudWatch model annotation
This is a follow up of #13511. I made a mistake while adding the proper annotation to `histories`.
1 parent b613fb9 commit 7dd32ab

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • localstack-core/localstack/services/cloudwatch

localstack-core/localstack/services/cloudwatch/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ class CloudWatchStore(BaseStore):
107107

108108
# Contains all the Alarm Histories. Per documentation, an alarm history is retained even if the alarm is deleted,
109109
# making it necessary to save this at store level
110-
histories: list[dict[str, AlarmHistoryItem]] = LocalAttribute(default=list)
110+
histories: list[AlarmHistoryItem] = LocalAttribute(default=list)
111111

112112
dashboards: dict[str, LocalStackDashboard] = LocalAttribute(default=dict)
113113

0 commit comments

Comments
 (0)