From ab0480dfc5599dfe568fd3938e2786abbf1638a5 Mon Sep 17 00:00:00 2001 From: aitbc Date: Wed, 27 May 2026 08:29:13 +0200 Subject: [PATCH] Fix monitor.py console import - use Rich Console directly instead of missing utils export --- cli/aitbc_cli/commands/monitor.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/cli/aitbc_cli/commands/monitor.py b/cli/aitbc_cli/commands/monitor.py index 39c0977a..95db807d 100755 --- a/cli/aitbc_cli/commands/monitor.py +++ b/cli/aitbc_cli/commands/monitor.py @@ -6,13 +6,16 @@ import time from pathlib import Path from typing import Optional from datetime import datetime, timedelta -from ..utils import output, error, success, console +from rich.console import Console + +from ..utils import output, error, success # Import shared modules from aitbc import get_logger, AITBCHTTPClient, NetworkError -# Initialize logger +# Initialize logger and console logger = get_logger(__name__) +console = Console() @click.group()