You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
557 B
20 lines
557 B
"""Compass tab for the parliamentary explorer.
|
|
|
|
This module will contain the compass tab implementation.
|
|
Currently: Tab logic remains in explorer.py pending Streamlit decoupling.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
from typing import List
|
|
|
|
|
|
def build_compass_tab(db_path: str, window_size: str) -> None:
|
|
"""Build the Politiek Kompas tab.
|
|
|
|
Currently delegates to explorer.py implementation.
|
|
Will be extracted when rendering logic is decoupled from Streamlit.
|
|
"""
|
|
import explorer
|
|
|
|
explorer.build_compass_tab(db_path, window_size)
|
|
|