From 6938f061257033be082b0250c76fa34452183d8f Mon Sep 17 00:00:00 2001 From: User123698745 Date: Fri, 26 Jan 2024 21:45:46 +0100 Subject: [PATCH] [prtester.py] Fix: Only select actual "option" elements of "select" elements to prevent "TypeError: argument of type 'NoneType' is not iterable" (#3932) --- .github/prtester.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/prtester.py b/.github/prtester.py index 103ecbe6..30a9f43b 100644 --- a/.github/prtester.py +++ b/.github/prtester.py @@ -87,7 +87,8 @@ def testBridges(instance: Instance, bridge_cards: Iterable, with_upload: bool, w selectionvalue = '' listname = listing.get('name') cleanlist = [] - for option in listing.contents: + options = listing.find_all('option') + for option in options: if 'optgroup' in option.name: cleanlist.extend(option) else: