source/tools/python/openapi_shim.py

14 lines
268 B
Python
Raw Normal View History

2021-04-08 06:37:51 +00:00
#!/usr/bin/env python3
"""Shim for executing the openapi spec validator."""
import re
import sys
from openapi_spec_validator.__main__ import main
2021-05-31 18:28:46 +00:00
2021-04-08 06:37:51 +00:00
if __name__ == "__main__":
sys.argv[0] = re.sub(r"(-script\.pyw|\.exe)?$", "", sys.argv[0])
sys.exit(main())