chore: apply auto formatted files

This commit is contained in:
rookiestar28
2026-04-20 20:07:48 +08:00
parent 0136543d71
commit fdf3a9ec27
2 changed files with 3 additions and 2 deletions
+3 -1
View File
@@ -18,7 +18,9 @@ class TestR182EffectiveConfigHotspot(unittest.TestCase):
)
@patch("services.effective_config.get_api_key_for_provider")
@patch("services.effective_config.get_effective_llm_provider", return_value="openai")
@patch(
"services.effective_config.get_effective_llm_provider", return_value="openai"
)
def test_effective_api_key_uses_resolved_provider_and_tenant(
self,
mock_provider,
-1
View File
@@ -4,7 +4,6 @@ import unittest
from pathlib import Path
from unittest.mock import patch
ROOT = Path(__file__).resolve().parents[1]