fix(lint): remove unused Settings and ProviderRegistry imports from actor tests
CI / benchmark-publish (pull_request) Has been skipped
CI / benchmark-regression (pull_request) Failing after 1m1s
CI / helm (pull_request) Successful in 39s
CI / push-validation (pull_request) Successful in 1m0s
CI / build (pull_request) Successful in 1m11s
CI / lint (pull_request) Failing after 1m37s
CI / quality (pull_request) Successful in 1m36s
CI / typecheck (pull_request) Successful in 1m56s
CI / security (pull_request) Successful in 2m5s
CI / integration_tests (pull_request) Successful in 4m17s
CI / e2e_tests (pull_request) Successful in 4m19s
CI / unit_tests (pull_request) Successful in 5m6s
CI / coverage (pull_request) Has been skipped
CI / docker (pull_request) Has been skipped
CI / status-check (pull_request) Failing after 4s

The PR branch accumulated two lint F401 violations in pre-existing test
file where Settings was added to an import but never used, and
ProviderRegistry was included in a parallel provider import without being
referenced anywhere in the file. Remove both to satisfy ruff checks.
This commit is contained in:
2026-05-09 21:29:41 +00:00
parent 1cfd764fcb
commit 657ca1ff85
+1 -2
View File
@@ -17,13 +17,12 @@ import yaml
from cleveragents.actor.registry import ActorRegistry
from cleveragents.actor.schema import ActorConfigSchema, ActorType, is_v3_yaml
from cleveragents.config.settings import ProviderDefaults, Settings
from cleveragents.config.settings import ProviderDefaults
from cleveragents.core.exceptions import NotFoundError
from cleveragents.domain.models.core.actor import Actor
from cleveragents.providers.registry import (
ProviderCapabilities,
ProviderInfo,
ProviderRegistry,
ProviderType,
)