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