Skip to content

Commit 3303303

Browse files
authored
Merge pull request #1013 from tisnik/lcore-1201-reformatted-sources-by-newest-black-version
LCORE-1201: reformatted sources by newest Black version
2 parents 6a619e1 + 3f080f5 commit 3303303

14 files changed

Lines changed: 24 additions & 61 deletions

File tree

dev-tools/mcp-mock-server/server.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
from pathlib import Path
2626
from typing import Any
2727

28-
2928
# Global storage for captured headers (last request)
3029
last_headers: dict[str, str] = {}
3130
request_log: list = []

src/app/endpoints/query.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,6 @@
7171
from utils.types import TurnSummary, content_to_str
7272
from authorization.azure_token_manager import AzureEntraIDManager
7373

74-
7574
logger = logging.getLogger("app.endpoints.handlers")
7675
router = APIRouter(tags=["query"])
7776

src/quota/quota_limiter.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@
4242
from quota.connect_pg import connect_pg
4343
from quota.connect_sqlite import connect_sqlite
4444

45-
4645
logger = get_logger(__name__)
4746

4847

src/utils/mcp_headers.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88

99
from configuration import AppConfig
1010

11-
1211
logger = logging.getLogger("app.endpoints.dependencies")
1312

1413

tests/e2e/features/steps/llm_query_response.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
from behave.runner import Context
77
from tests.e2e.utils.utils import replace_placeholders
88

9-
109
DEFAULT_LLM_TIMEOUT = 60
1110

1211

tests/integration/endpoints/test_rlsapi_v1_integration.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@
3232
from tests.unit.utils.auth_helpers import mock_authorization_resolvers
3333
from utils.suid import check_suid
3434

35-
3635
# ==========================================
3736
# Shared Fixtures
3837
# ==========================================

tests/unit/app/endpoints/test_a2a.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@
3939
from configuration import AppConfig
4040
from models.config import Action
4141

42-
4342
# User ID must be proper UUID
4443
MOCK_AUTH = (
4544
"00000001-0001-0001-0001-000000000001",

tests/unit/app/endpoints/test_streaming_query.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@
4343
from tests.unit.utils.auth_helpers import mock_authorization_resolvers
4444
from utils.token_counter import TokenCounter
4545

46-
4746
# Note: content_delta module doesn't exist in llama-stack-client 0.3.x
4847
# These are mock classes for backward compatibility with Agent API tests
4948
# pylint: disable=too-few-public-methods,redefined-builtin

tests/unit/authentication/test_api_key_token.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
"""Unit tests for functions defined in authentication/api_key_token.py"""
44

5-
65
import pytest
76
from fastapi import HTTPException, Request
87
from pydantic import SecretStr

tests/unit/cache/test_postgres_cache.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
from cache.cache_error import CacheError
1919
from cache.postgres_cache import PostgresCache
2020

21-
2221
USER_ID_1 = suid.get_suid()
2322
USER_ID_2 = suid.get_suid()
2423
CONVERSATION_ID_1 = suid.get_suid()

0 commit comments

Comments
 (0)