fix(hermes): Eliminates the wildcard import targeted by python:S2208 while retaining import-time loading of the _base module. No behavior in spine.py depends on names imported from _base. (incident sonar/atlasbot/python:S2208/AZ2y3T38Ky9i4pkIpSiV)

This commit is contained in:
Hermes Agent 2026-08-08 01:17:37 +00:00
parent 2fde40293c
commit 5bce1dfa49

View File

@ -6,7 +6,7 @@ from typing import Any
from atlasbot.engine.intent_router import IntentMatch
from atlasbot.snapshot.builder import summary_text
from ._base import *
from . import _base
def _join_context(parts: list[str]) -> str: