From 23b41c3f94fa54ec5c740c281d88e9811fbe67fe Mon Sep 17 00:00:00 2001 From: Wei Sun Date: Thu, 1 May 2025 09:29:42 -0700 Subject: [PATCH] Uses google's profile for isort. PiperOrigin-RevId: 753619497 --- pyproject.toml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 436db8c..a339e84 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -135,14 +135,8 @@ exclude = ['src/**/*.sh'] name = "google.adk" [tool.isort] -# Organize imports following Google style-guide -force_single_line = true -force_sort_within_sections = true -honor_case_in_force_sorted_sections = true -order_by_type = false -sort_relative_in_force_sorted_sections = true -multi_line_output = 3 -line_length = 200 +profile = "google" + [tool.pytest.ini_options] testpaths = ["tests"]