diff --git a/__init__.py b/__init__.py index 9fed18f..176772c 100644 --- a/__init__.py +++ b/__init__.py @@ -56,7 +56,7 @@ def handleQuery(query): matches = sorted(matches, key=lambda data: data["matchCount"], reverse=True) if query.isValid: - return [Item(id=match["name"], completion=match["name"], icon=match["emoji"], text=match["emoji"] + " " + match["code"], subtext=match["description"], actions=[ClipAction("Copy to clipboard", match["code"])]) for match in matches] + return [Item(id=match["name"], completion=match["name"], icon=match["emoji"], text=match["emoji"] + " " + match["code"], subtext=match["description"], actions=[ClipAction("Copy to clipboard", match["emoji"])]) for match in matches] else: return []