Skip to content

Commit 65f90b2

Browse files
committed
Add None option for osd and wmark bool args
1 parent 6b436b7 commit 65f90b2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/python_testing/TC_AVSMTestBase.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
logger = logging.getLogger(__name__)
2828

2929

30-
def wmark_osd_matcher(attribute_id: int, wmark: bool, osd: bool, wmark_check: bool, osd_check: bool) -> "AttributeMatcher":
30+
def wmark_osd_matcher(attribute_id: int, wmark: bool | None, osd: bool | None, wmark_check: bool, osd_check: bool) -> "AttributeMatcher":
3131
def predicate(report: AttributeValue) -> bool:
3232
if report.attribute != attribute_id:
3333
return False

0 commit comments

Comments
 (0)