168963460f
The handling of enum types has improved - we no longer need to import separate types at typechecking time.
10 lines
232 B
Python
Executable File
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())
|