fix: eval module not found exception string

Merge https://github.com/google/adk-python/pull/2148

This PR fixes #2071 exception string from `pip install google-adk[eval]` to `pip install "google-adk[eval]"` which makes it compatible for all the bash, zsh and other terminals

COPYBARA_INTEGRATE_REVIEW=https://github.com/google/adk-python/pull/2148 from kavinkumar807:fix-module-not-found-exception-string-in-eval 914281006a0e162665c0933d0c0ee0c37eb397cf
PiperOrigin-RevId: 786752261
This commit is contained in:
Kavin Kumar B
2025-07-24 10:22:28 -07:00
committed by Copybara-Service
parent fbe6a7b8d3
commit 7206e0a0eb
+2 -2
View File
@@ -15,6 +15,6 @@
from __future__ import annotations
MISSING_EVAL_DEPENDENCIES_MESSAGE = (
"Eval module is not installed, please install via `pip install"
" google-adk[eval]`."
'Eval module is not installed, please install via `pip install'
' "google-adk[eval]"`.'
)