Skip to content

Commit

Permalink
Adress new line warning on gostatic check
Browse files Browse the repository at this point in the history
  • Loading branch information
vimystic committed Jul 27, 2023
1 parent 88262a5 commit 7449c40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/queue.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ func mostRecentReleasesForChain(
number int16,
) (builder.HeighlinerQueuedChainBuilds, error) {
if chainNodeConfig.GithubOrganization == "" || chainNodeConfig.GithubRepo == "" {
return builder.HeighlinerQueuedChainBuilds{}, fmt.Errorf("github organization: %s and/or repo: %s not provided for chain: %s\n", chainNodeConfig.GithubOrganization, chainNodeConfig.GithubRepo, chainNodeConfig.Name)
return builder.HeighlinerQueuedChainBuilds{}, fmt.Errorf("github organization: %s and/or repo: %s not provided for chain: %s", chainNodeConfig.GithubOrganization, chainNodeConfig.GithubRepo, chainNodeConfig.Name)
}
client := http.Client{Timeout: 5 * time.Second}

Expand Down

0 comments on commit 7449c40

Please sign in to comment.