mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-04-30 23:02:50 +00:00
14 lines
380 B
Python
14 lines
380 B
Python
"""Backward-compatibility shim — use ``crewai_a2a.utils.delegation`` instead."""
|
|
|
|
import warnings
|
|
|
|
|
|
warnings.warn(
|
|
"'crewai.a2a.utils.delegation' has been moved to 'crewai_a2a.utils.delegation'. "
|
|
"Please update your imports. The old path will be removed in v2.0.0.",
|
|
FutureWarning,
|
|
stacklevel=2,
|
|
)
|
|
|
|
from crewai_a2a.utils.delegation import * # noqa: E402, F403
|