mirror of
https://github.com/bitwarden/android.git
synced 2025-12-12 00:08:00 -06:00
Uncomment jira ticket pattern removal
This commit is contained in:
parent
65f5abe4c5
commit
a050e9a0e5
@ -28,9 +28,9 @@ def process_line(line: str) -> str:
|
|||||||
original = line
|
original = line
|
||||||
|
|
||||||
# Remove Jira ticket patterns:
|
# Remove Jira ticket patterns:
|
||||||
# line = re.sub(r'\[[A-Z]+-\d+\]', '', line) # [ABC-123] -> ""
|
line = re.sub(r'\[[A-Z]+-\d+\]', '', line) # [ABC-123] -> ""
|
||||||
# line = re.sub(r'[A-Z]+-\d+:\s', '', line) # ABC-123: -> ""
|
line = re.sub(r'[A-Z]+-\d+:\s', '', line) # ABC-123: -> ""
|
||||||
# line = re.sub(r'[A-Z]+-\d+\s-\s', '', line) # ABC-123 - -> ""
|
line = re.sub(r'[A-Z]+-\d+\s-\s', '', line) # ABC-123 - -> ""
|
||||||
|
|
||||||
# Remove keywords and their variations
|
# Remove keywords and their variations
|
||||||
patterns = [
|
patterns = [
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user