cli: Keep web banner roof continuous

This commit is contained in:
Bas Nijholt
2026-06-30 20:23:19 -07:00
parent f5a1ad4ce8
commit afafbb767d
2 changed files with 8 additions and 8 deletions

View File

@@ -36,12 +36,12 @@ def _compose_farm_banner() -> Text:
banner.append("[]", style=windows)
banner.append(" ", style=structure)
banner.append("[]", style=windows)
banner.append(" \\\n", style=structure)
banner.append(" /__________________\\\n", style=structure)
banner.append(" | ", style=structure)
banner.append(" \\\n", style=structure)
banner.append(" /_________________\\\n", style=structure)
banner.append(" | ", style=structure)
banner.append("COMPOSE FARM", style="bold green")
banner.append(" |\n", style=structure)
banner.append(" |__________________|", style=structure)
banner.append(" |_________________|", style=structure)
return banner

View File

@@ -19,10 +19,10 @@ def test_compose_farm_banner_is_aligned() -> None:
" .-' _ '-.\n"
" / |_| \\\n"
" /-------------\\\n"
" / [] [] [] \\\n"
" /__________________\\\n"
" | COMPOSE FARM |\n"
" |__________________|"
" / [] [] [] \\\n"
" /_________________\\\n"
" | COMPOSE FARM |\n"
" |_________________|"
)