Skip to content

Commit 89af332

Browse files
committed
fix fmt
1 parent 948b8a6 commit 89af332

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

modules/migrations/github.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -631,7 +631,7 @@ func convertGithubReview(r *github.PullRequestReview) *base.Review {
631631
}
632632
}
633633

634-
func (g *GithubDownloaderV3) convertGithubReviewComments(cs []*github.PullRequestComment) ([]*base.ReviewComment,error) {
634+
func (g *GithubDownloaderV3) convertGithubReviewComments(cs []*github.PullRequestComment) ([]*base.ReviewComment, error) {
635635
var rcs = make([]*base.ReviewComment, 0, len(cs))
636636
for _, c := range cs {
637637
// get reactions
@@ -672,7 +672,7 @@ func (g *GithubDownloaderV3) convertGithubReviewComments(cs []*github.PullReques
672672
UpdatedAt: c.GetUpdatedAt(),
673673
})
674674
}
675-
return rcs,nil
675+
return rcs, nil
676676
}
677677

678678
// GetReviews returns pull requests review

0 commit comments

Comments
 (0)