chore: remove unused re-exports from conftest.py

The helper functions are already imported directly from helpers.py
by all test files, so the backwards compatibility re-export is dead code.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Luke Mino-Altherr 2026-02-03 19:22:24 -08:00
parent bf7fbb6317
commit 3311b13740

View File

@ -259,9 +259,3 @@ def autoclean_unit_test_assets(http: requests.Session, api_base: str):
for aid in ids:
with contextlib.suppress(Exception):
http.delete(f"{api_base}/api/assets/{aid}", timeout=30)
# Re-export helpers for backwards compatibility with any external imports
from helpers import trigger_sync_seed_assets, get_asset_filename
__all__ = ["trigger_sync_seed_assets", "get_asset_filename"]