chore: update typing import for python version compat

This commit is contained in:
Greyson LaLonde
2026-01-06 00:21:16 -05:00
parent 7c95553c1c
commit edbe8a8023

View File

@@ -3,7 +3,7 @@
from __future__ import annotations from __future__ import annotations
from collections.abc import AsyncIterator from collections.abc import AsyncIterator
from typing import TYPE_CHECKING, NotRequired, TypedDict from typing import TYPE_CHECKING, TypedDict
import uuid import uuid
from a2a.types import ( from a2a.types import (
@@ -17,6 +17,7 @@ from a2a.types import (
TaskStatusUpdateEvent, TaskStatusUpdateEvent,
TextPart, TextPart,
) )
from typing_extensions import NotRequired
from crewai.events.event_bus import crewai_event_bus from crewai.events.event_bus import crewai_event_bus
from crewai.events.types.a2a_events import A2AResponseReceivedEvent from crewai.events.types.a2a_events import A2AResponseReceivedEvent