style(issuecards): use List.extend() where possible
This commit is contained in:
parent
d615acdcdd
commit
58ce685b61
1 changed files with 20 additions and 20 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue