diff options
| author | skullydazed <skullydazed@users.noreply.github.com> | 2019-11-20 14:54:18 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-11-20 14:54:18 -0800 |
| commit | f7bdc54c697ff24bec1bd0781666ac05401bafb2 (patch) | |
| tree | 704511c89bd36582fcd0a4a05ae4812222d9b11c /bin | |
| parent | d2115f7d1c3a314e997ec6800b6741d83115d6be (diff) | |
| download | qmk_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 'bin')
| -rwxr-xr-x | bin/qmk | 4 |
1 files changed, 2 insertions, 2 deletions
| @@ -41,7 +41,7 @@ else: | |||
| 41 | os.environ['QMK_VERSION'] = 'nogit-' + strftime('%Y-%m-%d-%H:%M:%S') + '-dirty' | 41 | os.environ['QMK_VERSION'] = 'nogit-' + strftime('%Y-%m-%d-%H:%M:%S') + '-dirty' |
| 42 | 42 | ||
| 43 | # Setup the CLI | 43 | # Setup the CLI |
| 44 | import milc | 44 | import milc # noqa |
| 45 | 45 | ||
| 46 | milc.EMOJI_LOGLEVELS['INFO'] = '{fg_blue}Ψ{style_reset_all}' | 46 | milc.EMOJI_LOGLEVELS['INFO'] = '{fg_blue}Ψ{style_reset_all}' |
| 47 | 47 | ||
| @@ -61,7 +61,7 @@ def main(): | |||
| 61 | os.chdir(qmk_dir) | 61 | os.chdir(qmk_dir) |
| 62 | 62 | ||
| 63 | # Import the subcommands | 63 | # Import the subcommands |
| 64 | import qmk.cli | 64 | import qmk.cli # noqa |
| 65 | 65 | ||
| 66 | # Execute | 66 | # Execute |
| 67 | return_code = milc.cli() | 67 | return_code = milc.cli() |
