mirror of
https://github.com/MinaSaad1/pbi-cli
synced 2026-04-21 13:37:19 +00:00
fix: apply ruff format to banner.py
This commit is contained in:
parent
2dee744bef
commit
c1d8176a6c
1 changed files with 1 additions and 3 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in a new issue