style(issuecards): use List.extend() where possible

This commit is contained in:
cswimr 2025-03-28 13:12:46 -05:00
parent d615acdcdd
commit 58ce685b61
Signed by: cswimr
GPG key ID: 0EC431A8DA8F8087

View file

@ -58,26 +58,26 @@ class IssueCards(commands.Cog):
url_pattern = r"(?P<base_url>https?:\/\/[^\/]+)\/(?P<author>[^\/]+)\/(?P<repository_name>[^\/]+)(?:\/-)?\/(?P<type>issues|discussions|pull|pulls|merge_requests)\/(?P<number>\d+)"
matches = []
for match in re.finditer(identifier_pattern, message.content):
matches.append(
{
"match_type": "identifier",
"prefix": match.group("prefix"),
"gitlab_issue_type": match.group("gitlab_issue_type"),
"issue_number": match.group("issue_number"),
},
)
for match in re.finditer(url_pattern, message.content):
matches.append(
{
"match_type": "url",
"base_url": match.group("base_url"),
"author": match.group("author"),
"repository_name": match.group("repository_name"),
"type": match.group("type"),
"number": match.group("number"),
},
)
matches.extend(
{
"match_type": "identifier",
"prefix": match.group("prefix"),
"gitlab_issue_type": match.group("gitlab_issue_type"),
"issue_number": match.group("issue_number"),
}
for match in re.finditer(identifier_pattern, message.content)
)
matches.extend(
{
"match_type": "url",
"base_url": match.group("base_url"),
"author": match.group("author"),
"repository_name": match.group("repository_name"),
"type": match.group("type"),
"number": match.group("number"),
}
for match in re.finditer(url_pattern, message.content)
)
if not matches:
return