diff --git a/cli/planoai/defaults.py b/cli/planoai/defaults.py index 419fa239..03b113d0 100644 --- a/cli/planoai/defaults.py +++ b/cli/planoai/defaults.py @@ -16,7 +16,6 @@ from __future__ import annotations import os from dataclasses import dataclass - DEFAULT_LLM_LISTENER_PORT = 12000 # plano_config validation requires an http:// scheme on the OTLP endpoint. DEFAULT_OTLP_ENDPOINT = "http://localhost:4317" @@ -94,13 +93,9 @@ class DetectionResult: def summary(self) -> str: parts = [] if self.with_keys: - parts.append( - "env-keyed: " + ", ".join(p.name for p in self.with_keys) - ) + parts.append("env-keyed: " + ", ".join(p.name for p in self.with_keys)) if self.passthrough: - parts.append( - "pass-through: " + ", ".join(p.name for p in self.passthrough) - ) + parts.append("pass-through: " + ", ".join(p.name for p in self.passthrough)) return " | ".join(parts) if parts else "no providers" diff --git a/cli/test/test_defaults.py b/cli/test/test_defaults.py index fce77490..69d5dcfa 100644 --- a/cli/test/test_defaults.py +++ b/cli/test/test_defaults.py @@ -9,7 +9,6 @@ from planoai.defaults import ( synthesize_default_config, ) - _SCHEMA_PATH = Path(__file__).parents[2] / "config" / "plano_config_schema.yaml"