6 lines
268 B
Python
6 lines
268 B
Python
import sys
|
|
sys.path.insert(0, '/home/hmo/.hermes/profiles/position-analyst/scripts')
|
|
from self_repair import run_action
|
|
ok, detail = run_action({'action': 'rerun_script', 'script': 'mofin_health.py'}, 'health_collector')
|
|
print('ok:', ok)
|
|
print('detail:', detail[:200]) |