@@ -481,7 +481,9 @@ def test_auth_singleton_reuses_instance(self, llmgw_env_vars):
481481class TestPlatformSettings :
482482 """Tests for PlatformSettings."""
483483
484- def test_build_base_url_passthrough (self , platform_env_vars , mock_platform_auth , passthrough_api_config ):
484+ def test_build_base_url_passthrough (
485+ self , platform_env_vars , mock_platform_auth , passthrough_api_config
486+ ):
485487 """Test build_base_url for passthrough mode."""
486488 with patch .dict (os .environ , platform_env_vars , clear = True ):
487489 settings = PlatformSettings ()
@@ -491,7 +493,9 @@ def test_build_base_url_passthrough(self, platform_env_vars, mock_platform_auth,
491493 )
492494 assert "agenthub_/llm/raw/vendor/openai/model/gpt-4o/completions" in url
493495
494- def test_build_base_url_normalized (self , platform_env_vars , mock_platform_auth , normalized_api_config ):
496+ def test_build_base_url_normalized (
497+ self , platform_env_vars , mock_platform_auth , normalized_api_config
498+ ):
495499 """Test build_base_url for normalized mode."""
496500 with patch .dict (os .environ , platform_env_vars , clear = True ):
497501 settings = PlatformSettings ()
0 commit comments