We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c06f8c commit 70cc08cCopy full SHA for 70cc08c
1 file changed
cli/cli.py
@@ -139,7 +139,7 @@ def _row_sort_key(row_value):
139
field = err.get("field", "unknown")
140
message = err.get("error") or err.get("msg") or "validation error"
141
prefix = typer.style(" ! ", fg=typer.colors.BRIGHT_YELLOW)
142
- field_part = f"\033[1;38;5;208m{field}:\033[0m"
+ field_part = typer.style(f"{field}:", fg=typer.colors.BRIGHT_YELLOW, bold=True)
143
message_part = typer.style(f" {message}", fg=typer.colors.BRIGHT_YELLOW)
144
typer.echo(f"{prefix}{field_part}{message_part}")
145
shown += 1
0 commit comments