Skip to content

Commit 7206e0a

Browse files
kavinkumar807copybara-github
authored andcommitted
fix: eval module not found exception string
Merge #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=#2148 from kavinkumar807:fix-module-not-found-exception-string-in-eval 9142810 PiperOrigin-RevId: 786752261
1 parent fbe6a7b commit 7206e0a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/google/adk/evaluation/constants.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@
1515
from __future__ import annotations
1616

1717
MISSING_EVAL_DEPENDENCIES_MESSAGE = (
18-
"Eval module is not installed, please install via `pip install"
19-
" google-adk[eval]`."
18+
'Eval module is not installed, please install via `pip install'
19+
' "google-adk[eval]"`.'
2020
)

0 commit comments

Comments
 (0)