Files
thechart/src/auto_save.py
T
William Valentin ae4503145a Refactor validation and UI components into thechart package
- Introduced validation utilities in src/thechart/validation with InputValidator class for various data types.
- Migrated theme management to thechart.ui.theme_manager, providing a legacy shim for backward compatibility.
- Updated tooltip system to thechart.ui.tooltip_system, maintaining legacy imports.
- Created compatibility shim for undo utilities, redirecting to thechart.core.undo_manager.
- Ensured all new modules are properly documented and maintain existing functionality.
2025-08-08 21:36:13 -07:00

14 lines
301 B
Python

"""Compatibility shim re-exporting auto-save utilities.
Canonical implementation lives in `thechart.core.auto_save`.
"""
from __future__ import annotations
from thechart.core.auto_save import ( # noqa: F401
AutoSaveManager,
BackupManager,
)
__all__ = ["AutoSaveManager", "BackupManager"]