From 657ca1ff854c82e9a3d4f45983fe65cc86296fb7 Mon Sep 17 00:00:00 2001 From: CleverThis Date: Sat, 9 May 2026 21:29:41 +0000 Subject: [PATCH] fix(lint): remove unused Settings and ProviderRegistry imports from actor tests 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. --- tests/actor/test_registry_builtin_yaml.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/actor/test_registry_builtin_yaml.py b/tests/actor/test_registry_builtin_yaml.py index b7e86e9ec..750823917 100644 --- a/tests/actor/test_registry_builtin_yaml.py +++ b/tests/actor/test_registry_builtin_yaml.py @@ -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, )