docs(bib/sync): include 'notes' counter in stats example docstring

Stats dict now exposes a 'notes' key (added in e204ea0) — update the
module-level Usage example so a reader matching the printed dict
shape against the docstring sees the correct field set.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
kert
2026-04-29 09:46:57 -04:00
parent e204ea0e4c
commit e7b5454a61

View File

@@ -13,7 +13,7 @@ Usage::
items = s.list_items(tag="source:spider") items = s.list_items(tag="source:spider")
stats = push_to_zotero(items, store=s) stats = push_to_zotero(items, store=s)
print(stats) print(stats)
# {'created': 5908, 'skipped': 12, 'tags': 23456, 'attachments': 240} # {'created': 5908, 'skipped': 12, 'tags': 23456, 'attachments': 240, 'notes': 0}
""" """
from __future__ import annotations from __future__ import annotations