From 3311b13740bbc5a321f64ab116b2009077da7c47 Mon Sep 17 00:00:00 2001 From: Luke Mino-Altherr Date: Tue, 3 Feb 2026 19:22:24 -0800 Subject: [PATCH] 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 --- tests-unit/assets_test/conftest.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/tests-unit/assets_test/conftest.py b/tests-unit/assets_test/conftest.py index 53a747108..ef2ee98ac 100644 --- a/tests-unit/assets_test/conftest.py +++ b/tests-unit/assets_test/conftest.py @@ -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"]