From 8dc5b11e95303b8869d1fc4fe76c9de915efe536 Mon Sep 17 00:00:00 2001 From: Teknium Date: Thu, 2 Apr 2026 09:23:19 -0700 Subject: [PATCH] fix(honcho): remove redundant local HOST import in _all_profile_host_configs HOST is already imported at module level from honcho_integration.client. The local import inside _all_profile_host_configs() was unnecessary. --- honcho_integration/cli.py | 1 - 1 file changed, 1 deletion(-) diff --git a/honcho_integration/cli.py b/honcho_integration/cli.py index f646f4494..51f686dea 100644 --- a/honcho_integration/cli.py +++ b/honcho_integration/cli.py @@ -469,7 +469,6 @@ def _all_profile_host_configs() -> list[tuple[str, str, dict]]: Reads honcho.json once and maps each profile to its host block. """ try: - from honcho_integration.client import HOST from hermes_cli.profiles import list_profiles profiles = list_profiles() except Exception: