From 2c6d6e159451e819e1292ecc3c5adcab87790917 Mon Sep 17 00:00:00 2001 From: nikkie Date: Sun, 2 Nov 2025 21:23:07 -0800 Subject: [PATCH] fix: fix typo for --save_session option in `adk run --resume` help Merge https://github.com/google/adk-python/pull/2326 `adk run --help` (adk 1.9.0) ``` --resume FILE The json file that contains a previously saved session (by--save_session option). The previous session will be re-displayed. And user can continue to interact with the agent. ``` ## testing plan N/A (because this is a simple string correction) COPYBARA_INTEGRATE_REVIEW=https://github.com/google/adk-python/pull/2326 from ftnext:fix-typo-run-help-resume a896fa38e223b13e7edd8125d7b38139f1ca3712 PiperOrigin-RevId: 827311506 --- src/google/adk/cli/cli_tools_click.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/google/adk/cli/cli_tools_click.py b/src/google/adk/cli/cli_tools_click.py index edecab90..fa04a060 100644 --- a/src/google/adk/cli/cli_tools_click.py +++ b/src/google/adk/cli/cli_tools_click.py @@ -392,8 +392,8 @@ def validate_exclusive(ctx, param, value): ), help=( "The json file that contains a previously saved session (by" - "--save_session option). The previous session will be re-displayed. And" - " user can continue to interact with the agent." + " --save_session option). The previous session will be re-displayed." + " And user can continue to interact with the agent." ), callback=validate_exclusive, )