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

Этот коммит содержится в:
Lytovchenko, Danylo
2025-06-03 08:38:54 +02:00
коммит произвёл GitHub
родитель 54a2e943d7
Коммит de27ba3f02
+1 -1
Просмотреть файл
@@ -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: