db: remove unused Favorite alias

Zero callers in source (rg 'Favorite\b' returns only this line).
The rename from favorite -> bookmark landed; the alias existed as
a fall-back while callers migrated, and nothing still needs it.
This commit is contained in:
pax 2026-04-15 17:50:14 -05:00
parent 585979a0d1
commit deec81fc12

View File

@ -185,10 +185,6 @@ class Bookmark:
tag_categories: dict = field(default_factory=dict)
# Back-compat alias — will be removed in a future version.
Favorite = Bookmark
class Database:
def __init__(self, path: Path | None = None) -> None:
self._path = path or db_path()