"""Shim for backward compatibility. Re-exports canonical implementation from thechart.ui.medicine_management_window. """ from __future__ import annotations try: # noqa: SIM105 from thechart.ui.medicine_management_window import * # type: ignore # noqa: F401,F403 except ModuleNotFoundError: # pragma: no cover # Fallback for dev environments not using package layout from src.thechart.ui.medicine_management_window import * # type: ignore # noqa: F401,F403