fix: correct CLI import in integration test
Some checks failed
Cross-Node Transaction Testing / transaction-test (push) Successful in 4s
Deploy to Testnet / deploy-testnet (push) Has been cancelled
Multi-Node Stress Testing / stress-test (push) Has been cancelled
Node Failover Simulation / failover-test (push) Has been cancelled
Python Tests / test-python (push) Failing after 1m11s

This commit is contained in:
aitbc
2026-05-09 11:31:34 +02:00
parent f225660f43
commit 2592407750

View File

@@ -36,7 +36,7 @@ from app.main import create_app # noqa: E402
from app.deps import APIKeyValidator # noqa: E402 from app.deps import APIKeyValidator # noqa: E402
# CLI imports # CLI imports
from aitbc_cli.main import cli # noqa: E402 from aitbc_cli import cli # noqa: E402
# --------------------------------------------------------------------------- # ---------------------------------------------------------------------------