fix: apply ruff format to banner.py

This commit is contained in:
MinaSaad1 2026-04-05 23:34:29 +02:00
parent 2dee744bef
commit c1d8176a6c

View file

@ -52,9 +52,7 @@ def print_banner(version: str) -> None:
# Fallback for terminals without Unicode support (e.g. legacy cmd.exe)
art = "\n PBI-CLI\n"
tagline = (
f" {_DIM}{_TAGLINE}{_RESET}" if use_color else f" {_TAGLINE}"
)
tagline = f" {_DIM}{_TAGLINE}{_RESET}" if use_color else f" {_TAGLINE}"
ver_line = f" {_DIM}v{version}{_RESET}" if use_color else f" v{version}"
print(art)