From b6a263037a52d54f47a5d58ee4c43a8178b71876 Mon Sep 17 00:00:00 2001 From: Bocki Date: Fri, 30 Jun 2023 15:41:00 +0200 Subject: [PATCH] [core] Fix prtester for optgroups (#3467) --- .github/prtester.py | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/prtester.py b/.github/prtester.py index 93b83289..df6cc1ff 100644 --- a/.github/prtester.py +++ b/.github/prtester.py @@ -52,10 +52,14 @@ def testBridges(bridges,status): for listing in lists: selectionvalue = '' listname = listing.get('name') - if 'optgroup' in listing.contents[0].name: - listing = list(itertools.chain.from_iterable(listing)) + cleanlist = [] + for option in listing.contents: + if 'optgroup' in option.name: + cleanlist.extend(option) + else: + cleanlist.append(option) firstselectionentry = 1 - for selectionentry in listing: + for selectionentry in cleanlist: if firstselectionentry: selectionvalue = selectionentry.get('value') firstselectionentry = 0