fix: correct config import name in main.py
Some checks failed
CLI Tests / test-cli (push) Has been cancelled
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
Security Scanning / security-scan (push) Has been cancelled

- Changed from config_cmd to config as config_cmd
- The function in config.py is named config, not config_cmd
- All other import names matched their actual function names
This commit is contained in:
aitbc
2026-05-26 11:21:19 +02:00
parent 86058671eb
commit c96309e76f

View File

@@ -17,7 +17,7 @@ from aitbc_cli.commands.agent_sdk import agent
# from aitbc_cli.commands.node import node # Disabled - imports from non-existent aitbc_cli.core
# from aitbc_cli.commands.agent_comm import agent_comm # Disabled - imports from non-existent aitbc_cli.core
from aitbc_cli.commands.exchange import exchange
from aitbc_cli.commands.config import config_cmd
from aitbc_cli.commands.config import config as config_cmd
# Import island-specific commands
from aitbc_cli.commands.gpu_marketplace import gpu