We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 52554a0 commit b278c20Copy full SHA for b278c20
1 file changed
src/flock/cli/main.py
@@ -580,6 +580,11 @@ def get_dashboard_layout(selected: int, status_text: str = "") -> Group:
580
)
581
582
583
+def render_dashboard(console: Console, selected: int | None, is_install: bool = False) -> None:
584
+ """Wrapper around render_full_dashboard for backward compatibility (e.g. tests)."""
585
+ render_full_dashboard(console, selected, is_install)
586
+
587
588
def render_full_dashboard(console: Console, selected: int | None, is_install: bool = False) -> None:
589
"""Render the complete dashboard responsively (used only by the post-install hook)."""
590
width = console.width
0 commit comments