diff options
| author | Ryan <fauxpark@gmail.com> | 2024-05-11 19:03:16 +1000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-05-11 10:03:16 +0100 |
| commit | af4a806e3f1d338402f2ec828120ebc3ba43b3c8 (patch) | |
| tree | 48b4a421c1d9aa114e5b2d1bb97c1ed35a31e5cb /lib/python | |
| parent | 16557f9975abf693675e2cc246f3d1b1f73faf96 (diff) | |
`qmk find`: Fix typo in filter logging (#23693)
Diffstat (limited to 'lib/python')
| -rw-r--r-- | lib/python/qmk/search.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/python/qmk/search.py b/lib/python/qmk/search.py index 33550a3db2..2afb3033fc 100644 --- a/lib/python/qmk/search.py +++ b/lib/python/qmk/search.py | |||
| @@ -222,8 +222,8 @@ def _filter_keymap_targets(target_list: List[Tuple[str, str]], filters: List[str | |||
| 222 | continue | 222 | continue |
| 223 | valid_keymaps = filter(filter_class.apply, valid_keymaps) | 223 | valid_keymaps = filter(filter_class.apply, valid_keymaps) |
| 224 | 224 | ||
| 225 | value_str = f", {{fg_cyan}}{value}{{fg_reset}})" if value is not None else "" | 225 | value_str = f", {{fg_cyan}}{value}{{fg_reset}}" if value is not None else "" |
| 226 | cli.log.info(f'Filtering on condition: {{fg_green}}{func_name}{{fg_reset}}({{fg_cyan}}{key}{{fg_reset}}{value_str}...') | 226 | cli.log.info(f'Filtering on condition: {{fg_green}}{func_name}{{fg_reset}}({{fg_cyan}}{key}{{fg_reset}}{value_str})...') |
| 227 | 227 | ||
| 228 | elif equals_match is not None: | 228 | elif equals_match is not None: |
| 229 | key = equals_match.group('key') | 229 | key = equals_match.group('key') |
