From 9ad8ad4a21b252b97ff9654beaed58fb9fdbba18 Mon Sep 17 00:00:00 2001 From: Vincent Batts Date: Thu, 5 Jun 2025 16:21:14 -0400 Subject: [PATCH] v8 > also, any reference to "tags" as params or args is likely needing to be "labels". Which means that the "get_bookmarks_by_tag() function can be deleted, since it is provided by the get_bookmarks_by_label() function this generated v4, v5, v6, v7, and v8 --- main.py | 1 - 1 file changed, 1 deletion(-) diff --git a/main.py b/main.py index 2a00dc5..0a3773f 100644 --- a/main.py +++ b/main.py @@ -352,7 +352,6 @@ class Tools: "title": bookmark.get("title", "Untitled"), "url": bookmark.get("url"), "excerpt": bookmark.get("excerpt", "")[:200] + "..." if bookmark.get("excerpt", "") else "", - "tags": bookmark.get("tags", []), "labels": bookmark.get("labels", []), "collection": bookmark.get("collection", {}).get("name", ""), "created_at": bookmark.get("created_at"),