[DATALAD RUNCMD] Apply gofmt to a file in which typos were fixed but that somehow affected formatting

=== Do not change lines below ===
{
 "chain": [
  "c6903263c78da2c478a8c44f116515c3dbdddf3e"
 ],
 "cmd": "gofmt -w -s services/issue/pull.go",
 "exit": 0,
 "extra_inputs": [],
 "inputs": [],
 "outputs": [],
 "pwd": "."
}
^^^ Do not change lines above ^^^
This commit is contained in:
Yaroslav Halchenko 2024-04-30 11:42:18 -04:00
parent 48488e7650
commit 30c02be4bc

View file

@ -36,7 +36,7 @@ func getMergeBase(repo *git.Repository, pr *issues_model.PullRequest, baseBranch
type ReviewRequestNotifier struct {
Comment *issues_model.Comment
IsAdd bool
Reviewer *user_model.User
Reviewer *user_model.User
ReviewTeam *org_model.Team
}
@ -124,8 +124,8 @@ func PullRequestCodeOwnersReview(ctx context.Context, issue *issues_model.Issue,
return nil, err
}
notifiers = append(notifiers, &ReviewRequestNotifier{
Comment: comment,
IsAdd: true,
Comment: comment,
IsAdd: true,
Reviewer: u,
})
}