mirror of
https://github.com/ankitects/anki.git
synced 2025-09-19 06:22:22 -04:00

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