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

Commit 2417384

Browse files
authored
Fix KMS model annotations (#13563)
1 parent 449854d commit 2417384

File tree

1 file changed

+2
-1
lines changed
  • localstack-core/localstack/services/kms

1 file changed

+2
-1
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,8 +293,9 @@ class KmsKey:
293293
policy: str
294294
is_key_rotation_enabled: bool
295295
rotation_period_in_days: int
296-
next_rotation_date: datetime.datetime
296+
next_rotation_date: datetime.datetime | None
297297
previous_keys: list[str]
298+
_internal_key_id: uuid.UUID
298299

299300
def __init__(
300301
self,

0 commit comments

Comments
 (0)