Run ruff format changes and finalize indentation and lint fixes.

This commit is contained in:
William Valentin
2025-08-09 12:10:16 -07:00
parent 9cec07e9f6
commit 9a5a2f0022
68 changed files with 1272 additions and 4301 deletions
+5 -10
View File
@@ -1,11 +1,6 @@
"""Legacy shim for ThemeManager.
# Deprecated legacy shim. Use 'thechart.ui.theme_manager' instead.
from __future__ import annotations
This preserves backward compatibility for imports like:
from theme_manager import ThemeManager
Canonical implementation lives in: thechart.ui.theme_manager
"""
from thechart.ui.theme_manager import ThemeManager # noqa: F401
__all__ = ["ThemeManager"]
raise ImportError(
"src.theme_manager is removed. Import from 'thechart.ui.theme_manager'."
)