"""Backward-compatibility shim for legacy_tk imports.""" from installer.ui import screens as _screens globals().update({k: v for k, v in _screens.__dict__.items() if not k.startswith('__')}) __all__ = [name for name in globals() if not name.startswith('__')]