From 0bc7bcee942ee57d1aa34b849704c0cab506e6dc Mon Sep 17 00:00:00 2001 From: kavinkumarbaskar Date: Thu, 24 Jul 2025 10:16:01 +0530 Subject: [PATCH] fix: eval module not found exception string --- src/google/adk/evaluation/constants.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/google/adk/evaluation/constants.py b/src/google/adk/evaluation/constants.py index 74248ed18..0d14572d5 100644 --- a/src/google/adk/evaluation/constants.py +++ b/src/google/adk/evaluation/constants.py @@ -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]"`.' )