Small fixes & fmt

This commit is contained in:
Andras Schmelczer 2026-03-19 21:51:07 +00:00
parent 6b12e21d50
commit f32a552f46
23 changed files with 347 additions and 99 deletions

View file

@ -301,7 +301,7 @@ def _paginate(page, total_results: int, channel: str) -> list[dict]:
if not all_listings or total_results <= len(all_listings):
return all_listings
seen_ids = {l["id"] for l in all_listings}
seen_ids = {listing["id"] for listing in all_listings}
current_url = page.url
page_num = 2