Waterlens 4c252ae067 tools/mpremote: Allow running mpremote with python -m.
This is helpful because some scripts are likely to use mpremote with a
specific python path.
2022-03-30 15:29:26 +11:00

7 lines
84 B
Python

#!/usr/bin/env python3
import sys
from mpremote import main
sys.exit(main.main())