From 2b1b344f4734089e591acac75d8c2d2f1bc70f3b Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Sat, 9 Jan 2021 03:22:25 -0800 Subject: [PATCH] Add a divider between rounds in the /hunt output Just to make it a little easier to see the grouping of rounds. --- turbot/hunt.py | 1 + 1 file changed, 1 insertion(+) diff --git a/turbot/hunt.py b/turbot/hunt.py index edc8b87..1c2ee0e 100644 --- a/turbot/hunt.py +++ b/turbot/hunt.py @@ -120,6 +120,7 @@ def hunt_blocks(turb, hunt, puzzle_status='unsolved', search_terms=[], blocks += round_blocks(round, puzzles, omit_header=True) else: blocks += round_blocks(round, puzzles) + blocks.append(divider_block()) # Also blocks for any puzzles not in any round stray_puzzles = [puzzle for puzzle in puzzles if 'rounds' not in puzzle] -- 2.43.0