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
This commit is contained in:
nikkie
2025-11-02 21:23:39 -08:00
committed by Copybara-Service
parent 44aa82195a
commit 2c6d6e1594
+2 -2
View File
@@ -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,
)