Skip to content

Commit

Permalink
lint superfluous else
Browse files Browse the repository at this point in the history
  • Loading branch information
qrkourier committed Jul 25, 2024
1 parent 4f6cec6 commit cb00c72
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions pkg/github/github.go
Original file line number Diff line number Diff line change
Expand Up @@ -129,9 +129,8 @@ func (c *Client) GetLatestChartRelease(_ context.Context, prefix string) (*Relea
}
if resp.NextPage == 0 {
break
} else {
opt.Page = resp.NextPage
}
opt.Page = resp.NextPage
}

// Sort versions ascending
Expand Down

0 comments on commit cb00c72

Please sign in to comment.