Remove the unused skipped counter of the artist fetcher

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-08-17 22:38:37 +08:00
co-authored by Claude Opus 5
parent dfdfccc460
commit 7739abd105
@@ -794,7 +794,6 @@ def main(argv: list[str] | None = None) -> int:
fetched: int = 0
not_found: int = 0
errors: int = 0
skipped: int = 0
session: Session = ds.get_db()
try:
args.wikidata_csv.parent.mkdir(
@@ -808,7 +807,6 @@ def main(argv: list[str] | None = None) -> int:
for artist in session.scalars(
sa.select(Artist).order_by(Artist.id)):
if artist.name in done:
skipped += 1
continue
titles: list[str] = read_artist_titles(
session, artist.id)