fix: typo againt (in adk run --replay help)

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

`adk run --help` (adk 1.9.0)

```
  --replay FILE      The json file that contains the initial state of the
                     session and user queries. A new session will be created
                     using this state. And user queries are run againt the
                     newly created session. Users cannot continue to interact
                     with the agent.
```

```
$ git grep againt
src/google/adk/cli/cli_tools_click.py:        " queries are run againt the newly created session. Users cannot"
```

COPYBARA_INTEGRATE_REVIEW=https://github.com/google/adk-python/pull/2327 from ftnext:fix-typo-run-replay-help 77cae65a235d9119810fe3d209910562672713c8
PiperOrigin-RevId: 790872246
This commit is contained in:
nikkie
2025-08-04 13:31:29 -07:00
committed by Copybara-Service
parent 74589a1db7
commit e369c283b3
+1 -1
View File
@@ -225,7 +225,7 @@ def validate_exclusive(ctx, param, value):
help=(
"The json file that contains the initial state of the session and user"
" queries. A new session will be created using this state. And user"
" queries are run againt the newly created session. Users cannot"
" queries are run against the newly created session. Users cannot"
" continue to interact with the agent."
),
callback=validate_exclusive,