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.
This commit is contained in:
Teknium
2026-04-02 09:23:19 -07:00
committed by Teknium
parent 37d73d94bb
commit 8dc5b11e95

View File

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