anki/pylib/tools/protoc-gen-mypy.py
Damien Elmes 168963460f update to latest mypy_protobuf
The handling of enum types has improved - we no longer need to import
separate types at typechecking time.
2021-02-03 13:31:52 +10:00

10 lines
232 B
Python
Executable File

# copied from mypy_protobuf:bin - simple launch wrapper
import re
import sys
from mypy_protobuf.main import main
if __name__ == "__main__":
sys.argv[0] = re.sub(r"(-script\.pyw|\.exe)?$", "", sys.argv[0])
sys.exit(main())