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 8082764 commit b491999Copy full SHA for b491999
1 file changed
src/google/adk/events/event.py
@@ -15,7 +15,6 @@
15
from __future__ import annotations
16
17
from typing import Optional
18
-from typing import Any
19
from typing import cast
20
21
from google.adk.platform import time as platform_time
@@ -75,7 +74,7 @@ class Event(LlmResponse):
75
74
timestamp: float = Field(default_factory=lambda: platform_time.get_time())
76
"""The timestamp of the event."""
77
78
- def model_post_init(self, __context: Any) -> None:
+ def model_post_init(self, __context):
79
"""Post initialization logic for the event."""
80
# Generates a random ID for the event.
81
if not self.id:
0 commit comments