SWDEV-123456 - handle checkboxes with spaces (#464)

[ROCm/clr commit: de27ba3f02]
This commit is contained in:
Lytovchenko, Danylo
2025-06-03 08:38:54 +02:00
committed by GitHub
parent 1539c16ee8
commit 1586e74e76
+1 -1
View File
@@ -7,7 +7,7 @@ def is_checkbox(line: str) -> bool:
def is_checked(line: str) -> bool:
return bool(re.match(r"^\s*-\s*\[[xX]\]\s*.+", line))
return bool(re.match(r"^\s*-\s*\[\s*[xX]\s*\]\s*.+", line))
def is_comment(line: str) -> bool: