bump versions and fix docs

This commit is contained in:
Nick Sweeting
2026-03-15 17:43:07 -07:00
parent e598614b05
commit 7d42c6c8b5
15 changed files with 245 additions and 349 deletions

View File

@@ -186,7 +186,9 @@ def add(urls: str | list[str],
pass
# 6. Return the list of Snapshots in this crawl
return crawl.snapshot_set.all()
snapshots = crawl.snapshot_set.all()
snapshots.crawl_id = str(crawl.id)
return snapshots
@click.command()