mirror of
https://github.com/aljazceru/Auditor.git
synced 2025-12-17 03:24:18 +01:00
17 lines
602 B
Python
17 lines
602 B
Python
"""Backward compatibility shim for ML insights.
|
|
|
|
This file exists to maintain backward compatibility for code that imports
|
|
from theauditor.ml directly. All functionality has been moved to
|
|
theauditor.insights.ml for better organization.
|
|
|
|
This ensures that:
|
|
- from theauditor.ml import learn # STILL WORKS
|
|
- from theauditor.ml import suggest # STILL WORKS
|
|
- import theauditor.ml # STILL WORKS
|
|
"""
|
|
|
|
# Import everything from the new location
|
|
from theauditor.insights.ml import *
|
|
|
|
# This shim ensures 100% backward compatibility while the actual
|
|
# implementation is now in theauditor/insights/ml.py |