mirror of
https://github.com/bitwarden/android.git
synced 2025-12-10 09:56:45 -06:00
Skip processing if line starts with #
This commit is contained in:
parent
115e37a9fe
commit
54dccdbc87
@ -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)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user