"""MP Quiz tab for the parliamentary explorer. This module will contain the MP quiz tab implementation. Currently: Tab logic remains in explorer.py pending Streamlit decoupling. """ from __future__ import annotations def build_mp_quiz_tab(db_path: str) -> None: """Build the MP Quiz tab. Currently delegates to explorer.py implementation. Will be extracted when rendering logic is decoupled from Streamlit. """ import explorer explorer.build_mp_quiz_tab(db_path)