Skip to content

Commit fee84bf

Browse files
committed
ETL: Print record ID on successful fetcher run
This makes it easier to visually see what records have been fetched and the progress through a list of records.
1 parent 919d8b3 commit fee84bf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

willa/etl/fetcher.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def main() -> None:
3131
else:
3232
with console.status(f'[bold green]Downloading item {args.tind_id}'):
3333
fetch_one_from_tind(args.tind_id)
34-
console.print('Downloaded.')
34+
console.print(f'{args.tind_id} downloaded.')
3535

3636

3737
if __name__ == "__main__":

0 commit comments

Comments
 (0)