Skip to content

Commit

Permalink
chore: ignores errors explicitly
Browse files Browse the repository at this point in the history
  • Loading branch information
bartoszmajsak committed Apr 15, 2020
1 parent 2bf6431 commit 7e11ee3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/github/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -124,9 +124,9 @@ func FindAssociatedPRs(client *githubv4.Client, repo []string, matchingCommit Ma
}
withoutDuplicates := removeDuplicates(prs)
if unlabeledPRs {
fmt.Fprint(os.Stderr, "#### Found unlabeled PRs\n\n")
_, _ = fmt.Fprint(os.Stderr, "#### Found unlabeled PRs\n\n")
for i := range withoutDuplicates {
fmt.Fprintf(os.Stderr, "* %s\n", withoutDuplicates[i].Permalink)
_, _ = fmt.Fprintf(os.Stderr, "* %s\n", withoutDuplicates[i].Permalink)
}
}
return withoutDuplicates
Expand Down

0 comments on commit 7e11ee3

Please sign in to comment.