fix todo regex

This commit is contained in:
James Turk 2024-07-27 12:50:02 -04:00
parent 72003018b6
commit ddc8c90a30

View File

@ -26,7 +26,7 @@ TODO_TODO_RE = re.compile(
(?:\s*-\s*)?
(TODO|IDEA|DONE):? # label starts a line
""",
re.VERBOSE,
re.VERBOSE | re.MULTILINE,
)