style: run formatters (ruff, isort, black)

This commit is contained in:
Otto
2026-02-03 11:12:26 +00:00
parent 7d9380a793
commit c3ec7c2880
2 changed files with 8 additions and 4 deletions

View File

@@ -23,7 +23,10 @@ from .models import (
ToolResponseBase,
UserReadiness,
)
from .utils import build_missing_credentials_from_field_info, match_credentials_to_requirements
from .utils import (
build_missing_credentials_from_field_info,
match_credentials_to_requirements,
)
logger = logging.getLogger(__name__)

View File

@@ -259,8 +259,7 @@ def find_matching_credential(
(
cred
for cred in available_creds
if cred.provider in required_providers
and cred.type in required_types
if cred.provider in required_providers and cred.type in required_types
),
None,
)
@@ -387,7 +386,9 @@ async def match_user_credentials_to_graph(
}
# Use shared matching logic
matched, missing_list = await match_credentials_to_requirements(user_id, requirements)
matched, missing_list = await match_credentials_to_requirements(
user_id, requirements
)
# Convert missing list to string descriptions for backward compatibility
missing_descriptions = [