style(cache_warming): sort imports to satisfy the I001 ceiling after rebase

This commit is contained in:
Tin Chi Lo 2026-07-30 15:48:51 -07:00
parent b20f210abc
commit 18dc38f9f6
2 changed files with 6 additions and 6 deletions

View file

@ -6,6 +6,11 @@ from typing import TYPE_CHECKING, Literal
from litellm._logging import verbose_router_logger
from litellm.constants import DEFAULT_CHARS_PER_TOKEN
from litellm.litellm_core_utils.core_helpers import (
get_caller_scope,
get_request_metadata_field,
iter_request_metadata_dicts,
)
from litellm.router_strategy.complexity_router.cache_warming.eligibility import (
min_prompt_cache_tokens_for_warm_set,
resolve_warm_models,
@ -17,11 +22,6 @@ from litellm.router_strategy.complexity_router.cache_warming.types import (
CacheWarmingPayload,
compress_payload,
)
from litellm.litellm_core_utils.core_helpers import (
get_caller_scope,
get_request_metadata_field,
iter_request_metadata_dicts,
)
if TYPE_CHECKING:
from litellm.router_strategy.complexity_router.complexity_router import ComplexityRouter

View file

@ -2,8 +2,8 @@ import base64
import hashlib
import json
import zlib
from functools import lru_cache
from collections.abc import Mapping
from functools import lru_cache
from typing import Literal
from pydantic import BaseModel, ConfigDict