885da89b6f
- 15 sub-modules: _helpers, _registry, _dispatch, load_data, profile, filter, preprocess, clustering, evaluate, features, export, entities, anomalies, diagnostics, analysis, data_mgmt, distance_matrix - Extracted shared helpers: _resolve_dataset(), _count_rows(), _get_numeric_columns(), NUMERIC_DTYPES, NUMERIC_TYPE_NAMES - Extracted _cluster_core() for shared clustering pipeline - Thin tool_registry.py wrapper preserves backward compatibility - Old file preserved as tool_registry_backup.py - manage.py check passes (0 issues)
7 lines
230 B
Python
7 lines
230 B
Python
"""Thin wrapper — re-exports everything from the analysis.tools package.
|
|
|
|
This preserves backward compatibility for all imports of
|
|
``from analysis.tool_registry import ...``.
|
|
"""
|
|
from analysis.tools import * # noqa: F401, F403
|