Skip to content

Commit 3ba5af0

Browse files
committed
Fix isinstance() syntax error in test_helpers
1 parent 1a61370 commit 3ba5af0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lung_cancer_screening/core/tests/acceptance/helpers/test_helpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ def check_labels(page, answers):
66
page.get_by_label(answers, exact=True).check()
77
return
88

9-
if isinstance(answers, list, tuple):
9+
if isinstance(answers, (list, tuple)):
1010
for answer in answers:
1111
page.get_by_label(answer, exact=True).check()
1212
return

0 commit comments

Comments
 (0)