Fix monitor.py console import - use Rich Console directly instead of missing utils export
Some checks failed
Cross-Node Transaction Testing / transaction-test (push) Has been cancelled
Deploy to Testnet / deploy-testnet (push) Has been cancelled
Multi-Node Stress Testing / stress-test (push) Has been cancelled
CLI Tests / test-cli (push) Has been cancelled
Security Scanning / security-scan (push) Has been cancelled

This commit is contained in:
aitbc
2026-05-27 08:29:13 +02:00
parent 630f467fbb
commit ab0480dfc5

View File

@@ -6,13 +6,16 @@ import time
from pathlib import Path from pathlib import Path
from typing import Optional from typing import Optional
from datetime import datetime, timedelta 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 # Import shared modules
from aitbc import get_logger, AITBCHTTPClient, NetworkError from aitbc import get_logger, AITBCHTTPClient, NetworkError
# Initialize logger # Initialize logger and console
logger = get_logger(__name__) logger = get_logger(__name__)
console = Console()
@click.group() @click.group()