#!/usr/bin/python3

import sys

from onnx.bin.checker import check_model


if __name__ == "__main__":
    sys.exit(check_model())
