From 0567a3f4a366b48a5853d0d59f61f2b5abfdf23c Mon Sep 17 00:00:00 2001 From: kolo Date: Sun, 25 Jan 2026 16:04:47 +0300 Subject: [PATCH] release generate --- metrics/__main__.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/metrics/__main__.py b/metrics/__main__.py index 7042abf..247a174 100644 --- a/metrics/__main__.py +++ b/metrics/__main__.py @@ -8,7 +8,9 @@ orchestrator = Orchestrator() def main() -> None: app.include_router(router) - app.set_description_message_pattern(lambda command, description: f'[blue]{command}[/blue] [red]--->[/red] [i]{description}[/i]') + app.set_description_message_pattern( + lambda command, description: f'[bold cyan]▸[/bold cyan] [bold white]{command}[/bold white] [dim]│[/dim] [yellow italic]{description}[/yellow italic]' + ) orchestrator.start_polling(app)