mirror of
https://github.com/dredx/prole.git
synced 2026-09-27 13:24:30 +00:00
7 lines
261 B
Python
7 lines
261 B
Python
"""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("__")]
|