Skip to content

Commit 448a351

Browse files
committed
fix: cast platform_uuid.new_uuid to str for mypy strictness
1 parent 5f003fb commit 448a351

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/google/adk/agents/invocation_context.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -413,4 +413,4 @@ def _find_matching_function_call(
413413

414414

415415
def new_invocation_context_id() -> str:
416-
return "e-" + platform_uuid.new_uuid()
416+
return "e-" + str(platform_uuid.new_uuid())

0 commit comments

Comments
 (0)