1
0
Files
h8-536-decoder/h8536_report_source_trace.py
2026-05-25 17:42:58 +10:00

9 lines
194 B
Python

#!/usr/bin/env python3
"""Compatibility wrapper for the H8/536 report-source tracer CLI."""
from h8536.report_source_trace import main
if __name__ == "__main__":
raise SystemExit(main())