black formatting

This commit is contained in:
Adil Hafeez 2026-04-17 01:01:45 -07:00
parent 25fec35f39
commit ecacf869e5
2 changed files with 2 additions and 8 deletions

View file

@ -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"

View file

@ -9,7 +9,6 @@ from planoai.defaults import (
synthesize_default_config,
)
_SCHEMA_PATH = Path(__file__).parents[2] / "config" / "plano_config_schema.yaml"