Skip to content

Commit 2100984

Browse files
committed
Remove bold preflight check output
1 parent 345295d commit 2100984

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

plain/plain/cli/preflight.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def check_command(deploy, format, quiet):
5959
if format == "text":
6060
if not quiet:
6161
# Print check name without newline
62-
click.secho(f"{check_name} ", nl=False, err=True, bold=True)
62+
click.secho(f"{check_name} ", nl=False, err=True)
6363

6464
# Determine status icon based on issue severity
6565
if not visible_issues:
@@ -232,7 +232,7 @@ def list_checks():
232232
click.style(" (silenced)", fg="red", dim=True) if is_silenced else ""
233233
)
234234
click.echo(
235-
f" {click.style(name, bold=True)}: {click.style(description, dim=True)}{silenced_text}"
235+
f" {click.style(name)}: {click.style(description, dim=True)}{silenced_text}"
236236
)
237237

238238
if deployment:
@@ -242,7 +242,7 @@ def list_checks():
242242
click.style(" (silenced)", fg="red", dim=True) if is_silenced else ""
243243
)
244244
click.echo(
245-
f" {click.style(name, bold=True)}: {click.style(description, dim=True)}{silenced_text}"
245+
f" {click.style(name)}: {click.style(description, dim=True)}{silenced_text}"
246246
)
247247

248248
if not regular and not deployment:

0 commit comments

Comments
 (0)