Skip to content

Commit 6be703a

Browse files
committed
Fix lint
1 parent d373b77 commit 6be703a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

services/convert/pull.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -481,7 +481,7 @@ func ToAPIPullRequests(ctx context.Context, baseRepo *repo_model.Repository, prs
481481
// Calculate diff
482482
startCommitID = pr.MergeBase
483483

484-
apiPullRequest.ChangedFiles, apiPullRequest.Additions, apiPullRequest.Deletions, err = gitRepo.GetDiffShortStat(startCommitID, endCommitID)
484+
apiPullRequest.ChangedFiles, apiPullRequest.Additions, apiPullRequest.Deletions, err = gitRepo.GetDiffShortStat(startCommitID, endCommitID)
485485
if err != nil {
486486
log.Error("GetDiffShortStat: %v", err)
487487
}

0 commit comments

Comments
 (0)