Skip to content

Commit

Permalink
[Add] Add chunk indicators
Browse files Browse the repository at this point in the history
- To better help poster designers I added segmentation between chunks in intervals of 10 assets to allow these designers to claim certain chunks from a user's logs
- This potentially closes #156
  • Loading branch information
Drazzilb08 committed Apr 9, 2024
1 parent c7bb479 commit e3a7a97
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions modules/unmatched_assets.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,9 @@ def print_output(unmatched_dict, media_dict, logger):
logger.info(create_table(table))
logger.info("")
for item in data:
if data.index(item) % 10 == 0:
logger.info(f"\t*** {location_base.title()}{suffix} {data.index(item)+1} - {min(data.index(item)+10, len(data))} ***")
logger.info("")
if asset_type == 'series':
missing_seasons = item.get('missing_seasons', False)
if missing_seasons:
Expand Down

0 comments on commit e3a7a97

Please sign in to comment.