From 0c49aef25170972d3eaaeec6b496b76bdf3b38c2 Mon Sep 17 00:00:00 2001 From: Hyeongjun Kang Date: Tue, 4 Nov 2025 18:29:43 -0800 Subject: [PATCH] =?UTF-8?q?chore:=20correct=20typo=20in=20pyproject.toml?= =?UTF-8?q?=20(swtich=20=E2=86=92=20switch)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Merge https://github.com/google/adk-python/pull/2651 ### Summary Correct a misspelling in the build configuration: - "swtich" → "switch" in `pyproject.toml`. ### Rationale This is a spelling fix only. It improves readability and avoids potential confusion in configuration. There is no impact on runtime behavior, tests, or public APIs. ### Notes - Follows Conventional Commits style for build/config changes (`build:`). - CLA status should be green via the Google CLA bot. COPYBARA_INTEGRATE_REVIEW=https://github.com/google/adk-python/pull/2651 from marsboy02:docs/fix-type-pyproject b78c014c864b1a143ffc157c7a8c807f5f19d31d PiperOrigin-RevId: 828221776 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 149a6ec2..f27b3b59 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -206,7 +206,7 @@ asyncio_mode = "auto" python_version = "3.9" exclude = "tests/" plugins = ["pydantic.mypy"] -# Start with non-strict mode, and swtich to strict mode later. +# Start with non-strict mode, and switch to strict mode later. # strict = true disable_error_code = ["import-not-found", "import-untyped", "unused-ignore"] follow_imports = "skip"