Skip to content

Commit 2e822be

Browse files
authored
fix: clarify local import comment in agents.py
1 parent c7c9812 commit 2e822be

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

src/specify_cli/agents.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -378,6 +378,8 @@ def resolve_skill_placeholders(
378378
# Fall back to init-options.json for projects that haven't migrated.
379379
context_file = ""
380380
try:
381+
# Local import: _load_agent_context_config lives in __init__.py
382+
# which imports agents.py, so a top-level import would be circular.
381383
from . import _load_agent_context_config
382384
ac_cfg = _load_agent_context_config(project_root)
383385
context_file = ac_cfg.get("context_file") or ""

0 commit comments

Comments
 (0)