Some checks failed
smoke-mm / Install & smoke test mm --help (push) Has been cancelled
11 lines
180 B
Python
11 lines
180 B
Python
import importlib
|
|
import sys
|
|
import traceback
|
|
|
|
try:
|
|
importlib.import_module("CLI")
|
|
print("CLI imported OK")
|
|
except Exception as e:
|
|
traceback.print_exc()
|
|
sys.exit(1)
|