seanpedrickcase's picture
Sync Pi agent Space: fix on agent task download links with root path
f29a0dd
Raw
History Blame Contribute Delete
310 Bytes
"""
Legacy `tools` package.
This repository historically treated `tools/` as a top-level import namespace
(e.g. `from tools.config import ...`). Making it a real package keeps those
imports working in PyPI installs and in repo-root executions.
"""
from __future__ import annotations
__all__: list[str] = []