Filter boards by ID+Name

This commit is contained in:
Ivan Kravets
2020-01-04 11:46:25 +02:00
parent 6020faf970
commit 915b9145f6

View File

@@ -32,7 +32,7 @@ def cli(query, installed, json_output): # pylint: disable=R0912
grpboards = {}
for board in _get_boards(installed):
if query and query.lower() not in json.dumps(board).lower():
if query and not any(query.lower() in board[k] for k in ("id", "name")):
continue
if board["platform"] not in grpboards:
grpboards[board["platform"]] = []