summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorskullydazed <skullydazed@users.noreply.github.com>2019-11-20 14:54:18 -0800
committerFlorian Didron <fdidron@users.noreply.github.com>2020-01-09 08:57:11 +0900
commitdfa3631a44eee30c7c734cf023ef1316e240eca3 (patch)
tree0b7f603490af486c24f58512a109c19355d1eb40 /bin
parent4dc4b7af75e4757f13ae8f16ed760452ea4f1af0 (diff)
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 'bin')
-rwxr-xr-xbin/qmk4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/qmk b/bin/qmk
index 876473fa43..b42f6b6e23 100755
--- a/bin/qmk
+++ b/bin/qmk
@@ -41,7 +41,7 @@ else:
os.environ['QMK_VERSION'] = 'nogit-' + strftime('%Y-%m-%d-%H:%M:%S') + '-dirty'
# Setup the CLI
-import milc
+import milc # noqa
milc.EMOJI_LOGLEVELS['INFO'] = '{fg_blue}Ψ{style_reset_all}'
@@ -61,7 +61,7 @@ def main():
os.chdir(qmk_dir)
# Import the subcommands
- import qmk.cli
+ import qmk.cli # noqa
# Execute
return_code = milc.cli()