Remove debugging stuff

This commit is contained in:
Christoph Koschel 2023-09-11 11:16:19 +02:00
parent 008d51b5ea
commit 9d485f00b8

View File

@ -439,8 +439,6 @@ class TodoParser(object):
marker['pattern'] +
(r'(?!(' + '|'.join(suff_escape_list) + r'))' if len(suff_escape_list) > 0 else '') +
r'\s*.+$)')
if block['markdown_language'] == "ruby":
print(comment_pattern)
comments = re.finditer(comment_pattern, block['hunk'], re.MULTILINE)
extracted_comments = []
prev_comment = None