summaryrefslogtreecommitdiff
path: root/lib/python/qmk/cli/find.py
diff options
context:
space:
mode:
authorNick Brassel <nick@tzarc.org>2023-10-17 09:43:50 +1100
committerGitHub <noreply@github.com>2023-10-17 09:43:50 +1100
commitf6c70c40af502923594e76bf079f602ed88a2341 (patch)
treeda27fe0d9c8c4fa24e39afd82d1a479b02e06e60 /lib/python/qmk/cli/find.py
parent81a3aa025cda52732e847af8db256cb132605ce0 (diff)
Allow for disabling of parallel processing of qmk find and `qmk mass-compile`. (#22160)
Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>
Diffstat (limited to 'lib/python/qmk/cli/find.py')
-rw-r--r--lib/python/qmk/cli/find.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/qmk/cli/find.py b/lib/python/qmk/cli/find.py
index 2836eb8a54..f2135bbc16 100644
--- a/lib/python/qmk/cli/find.py
+++ b/lib/python/qmk/cli/find.py
@@ -23,7 +23,7 @@ def find(cli):
if len(cli.args.filter) == 0 and len(cli.args.print) > 0:
cli.log.warning('No filters supplied -- keymaps not parsed, unable to print requested values.')
- targets = search_keymap_targets(cli.args.keymap, cli.args.filter, cli.args.print)
+ targets = search_keymap_targets([('all', cli.config.find.keymap)], cli.args.filter, cli.args.print)
for keyboard, keymap, print_vals in targets:
print(f'{keyboard}:{keymap}')