Skip processing if line starts with #

This commit is contained in:
Álison Fernandes 2025-11-17 22:29:29 +00:00
parent 115e37a9fe
commit 54dccdbc87
No known key found for this signature in database
GPG Key ID: B8CE98903DFC87BC

View File

@ -78,7 +78,7 @@ def process_file(input_file: str, app_label: str) -> Tuple[List[str], List[str],
with open(input_file, 'r') as f:
for line in f:
line = line.strip()
should_process = line and not line.endswith(':')
should_process = line and not line.startswith('#')
if should_process:
tickets = extract_jira_tickets(line)