aboutsummaryrefslogtreecommitdiff
path: root/lib/python/qmk/cli/flash.py
diff options
context:
space:
mode:
authorskullydazed <skullydazed@users.noreply.github.com>2019-11-20 14:54:18 -0800
committerGitHub <noreply@github.com>2019-11-20 14:54:18 -0800
commitf7bdc54c697ff24bec1bd0781666ac05401bafb2 (patch)
tree704511c89bd36582fcd0a4a05ae4812222d9b11c /lib/python/qmk/cli/flash.py
parentd2115f7d1c3a314e997ec6800b6741d83115d6be (diff)
downloadqmk_firmware-f7bdc54c697ff24bec1bd0781666ac05401bafb2.tar.gz
qmk_firmware-f7bdc54c697ff24bec1bd0781666ac05401bafb2.zip
Add flake8 to our test suite and fix all errors (#7379)
* Add flake8 to our test suite and fix all errors * Add some documentation
Diffstat (limited to 'lib/python/qmk/cli/flash.py')
-rw-r--r--lib/python/qmk/cli/flash.py10
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 @@
3You can compile a keymap already in the repo or using a QMK Configurator export. 3You can compile a keymap already in the repo or using a QMK Configurator export.
4A bootloader must be specified. 4A bootloader must be specified.
5""" 5"""
6import os
7import sys
8import subprocess 6import subprocess
9from argparse import FileType
10
11from milc import cli
12from qmk.commands import create_make_command
13from qmk.commands import parse_configurator_json
14from qmk.commands import compile_configurator_json
15 7
16import qmk.path 8import qmk.path
9from milc import cli
10from qmk.commands import compile_configurator_json, create_make_command, parse_configurator_json
17 11
18 12
19def print_bootloader_help(): 13def print_bootloader_help():