From 1d4d64fa604e7434eeab9be7d187595b18e18018 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Tue, 28 Jul 2026 18:56:55 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- tests/studio/test_model_picker_contracts.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/tests/studio/test_model_picker_contracts.py b/tests/studio/test_model_picker_contracts.py index c6bb7c71ff..616b1e79ff 100644 --- a/tests/studio/test_model_picker_contracts.py +++ b/tests/studio/test_model_picker_contracts.py @@ -920,12 +920,9 @@ def test_the_settings_page_judges_the_config_storage_actually_keeps(): object called a default config non-default, so Remember reported saved while the local write had dropped the entry, and the mirror sent the server an "auto" override the browser did not have.""" - src = " ".join( - _read("features/model-picker/components/model-config-page.tsx").split() - ) + src = " ".join(_read("features/model-picker/components/model-config-page.tsx").split()) assert ( - "const normalizedRuntimeConfig = normalizePerModelConfig( effectiveRuntimeConfig, );" - in src + "const normalizedRuntimeConfig = normalizePerModelConfig( effectiveRuntimeConfig, );" in src ) assert "const defaultConfig = isDefaultConfig(normalizedRuntimeConfig);" in src # The same object goes to storage and to the server, or they disagree again.