diff options
Diffstat (limited to 'lib/python/qmk/cli/flash.py')
-rw-r--r-- | lib/python/qmk/cli/flash.py | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/lib/python/qmk/cli/flash.py b/lib/python/qmk/cli/flash.py index 37556aaaf..031cb9496 100644 --- a/lib/python/qmk/cli/flash.py +++ b/lib/python/qmk/cli/flash.py | |||
@@ -3,17 +3,11 @@ | |||
3 | You can compile a keymap already in the repo or using a QMK Configurator export. | 3 | You can compile a keymap already in the repo or using a QMK Configurator export. |
4 | A bootloader must be specified. | 4 | A bootloader must be specified. |
5 | """ | 5 | """ |
6 | import os | ||
7 | import sys | ||
8 | import subprocess | 6 | import subprocess |
9 | from argparse import FileType | ||
10 | |||
11 | from milc import cli | ||
12 | from qmk.commands import create_make_command | ||
13 | from qmk.commands import parse_configurator_json | ||
14 | from qmk.commands import compile_configurator_json | ||
15 | 7 | ||
16 | import qmk.path | 8 | import qmk.path |
9 | from milc import cli | ||
10 | from qmk.commands import compile_configurator_json, create_make_command, parse_configurator_json | ||
17 | 11 | ||
18 | 12 | ||
19 | def print_bootloader_help(): | 13 | def print_bootloader_help(): |