Skip to content
This repository was archived by the owner on Mar 23, 2026. It is now read-only.
Merged
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/services/cloudwatch/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ class CloudWatchStore(BaseStore):

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

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

Expand Down
Loading