mirror of
https://github.com/ditkrg/todo-to-issue-action.git
synced 2026-01-22 22:06:43 +00:00
Add {} to fix f-string
This commit is contained in:
parent
c9ead1ec75
commit
ad1d917043
@ -70,7 +70,7 @@ class GitHubClient(Client):
|
||||
pr_search = re.search(pr_url_pattern, diff_url)
|
||||
if pr_search:
|
||||
pr_number = pr_search.group(1)
|
||||
diff_url = f'self.repos_url{self.repo}/pulls/{pr_number}'
|
||||
diff_url = f'{self.repos_url}{self.repo}/pulls/{pr_number}'
|
||||
elif self.before != '0000000000000000000000000000000000000000':
|
||||
# There is a valid before SHA to compare with, or this is a release being created.
|
||||
diff_url = f'{self.repos_url}{self.repo}/compare/{self.before}...{self.sha}'
|
||||
|
||||
Loading…
Reference in New Issue
Block a user