From 3a4f579f0512fde367f3f9edc0a394302b2badc4 Mon Sep 17 00:00:00 2001 From: putschgi Date: Thu, 3 Jul 2025 10:44:54 +0200 Subject: [PATCH] main.py aktualisiert --- main.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/main.py b/main.py index ea78cb8..001fcc0 100644 --- a/main.py +++ b/main.py @@ -533,6 +533,8 @@ def generate_fill_sequence(): w, h, rot = int(parts[0]), int(parts[1]), parts[2].strip().lower() == 'true' sequence.append({'w': w, 'h': h, 'rotated': rot}) case_sequence = sequence + print(f"Anzahl erkannter Sets: {len(sets)}") + except: case_sequence = [{'w': 2, 'h': 1, 'rotated': False}, {'w': 1, 'h': 2, 'rotated': False}]