fix: correct import path in gpu_marketplace.py
Some checks failed
CLI Tests / test-cli (push) Has been cancelled
Security Scanning / security-scan (push) Has been cancelled

- Change import from relative path to absolute cli.utils module
- Fixes ImportError: cannot import name 'output' from 'aitbc_cli.utils'
This commit is contained in:
aitbc
2026-04-18 10:44:45 +02:00
parent d28222819c
commit ef91f4e773

View File

@@ -12,8 +12,8 @@ import asyncio
from datetime import datetime from datetime import datetime
from decimal import Decimal from decimal import Decimal
from typing import Optional, List from typing import Optional, List
from ..utils import output, error, success, info, warning from cli.utils import output, error, success, info, warning
from ..utils.island_credentials import ( from cli.utils.island_credentials import (
load_island_credentials, get_rpc_endpoint, get_chain_id, load_island_credentials, get_rpc_endpoint, get_chain_id,
get_island_id, get_island_name get_island_id, get_island_name
) )