From eb55eb7e7f0fa647d762205225c333dcd8a08dd0 Mon Sep 17 00:00:00 2001 From: nikkie Date: Sun, 1 Mar 2026 14:52:13 -0800 Subject: [PATCH] fix: typo in A2A EXPERIMENTAL warning Merge https://github.com/google/adk-python/pull/4462 **Please ensure you have read the [contribution guide](https://github.com/google/adk-python/blob/main/CONTRIBUTING.md) before creating a pull request.** ### Link to Issue or Description of Change **2. Or, if no issue exists, describe the change:** **Problem:** I found a typo: arethemselves >/.../adk-python/src/google/adk/a2a/converters/event_converter.py:245: UserWarning: [EXPERIMENTAL] convert_a2a_message_to_event: ADK Implementation for A2A support (A2aAgentExecutor, RemoteA2aAgent and corresponding supporting components etc.) is in experimental mode and is subjected to breaking changes. A2A protocol and SDK arethemselves not experimental. Once it's stable enough the experimental mode will be removed. Your feedback is welcome. **Solution:** Just fix ### Testing Plan This is typo fix **Unit Tests:** N/A **Manual End-to-End (E2E) Tests:** N/A ### Checklist - [x] I have read the [CONTRIBUTING.md](https://github.com/google/adk-python/blob/main/CONTRIBUTING.md) document. - [x] I have performed a self-review of my own code. - [ ] I have commented my code, particularly in hard-to-understand areas. - [ ] I have added tests that prove my fix is effective or that my feature works. - [ ] New and existing unit tests pass locally with my changes. - [ ] I have manually tested my changes end-to-end. - [ ] Any dependent changes have been merged and published in downstream modules. COPYBARA_INTEGRATE_REVIEW=https://github.com/google/adk-python/pull/4462 from ftnext:fix-typo-a2a-experimental-warning a117314eb524dd93351e17f2183eea080225e43e PiperOrigin-RevId: 877095788 --- src/google/adk/a2a/experimental.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/google/adk/a2a/experimental.py b/src/google/adk/a2a/experimental.py index 77c31fde..7f331eb7 100644 --- a/src/google/adk/a2a/experimental.py +++ b/src/google/adk/a2a/experimental.py @@ -23,7 +23,7 @@ a2a_experimental = _make_feature_decorator( default_message=( "ADK Implementation for A2A support (A2aAgentExecutor, RemoteA2aAgent " "and corresponding supporting components etc.) is in experimental mode " - "and is subjected to breaking changes. A2A protocol and SDK are" + "and is subject to breaking changes. A2A protocol and SDK are " "themselves not experimental. Once it's stable enough the experimental " "mode will be removed. Your feedback is welcome." ),