Skip to content

Commit

Permalink
Fix linter failure (#1527)
Browse files Browse the repository at this point in the history
We had merged a PR that didn't pass the linter.
  • Loading branch information
JAORMX authored Nov 6, 2023
1 parent 8ed53dc commit 4b6c15d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion internal/controlplane/handlers_repositories.go
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,8 @@ func (s *Server) ListRemoteRepositoriesFromProvider(
_, owner_filter, err := s.getProviderAccessToken(ctx, provider.Name, projectID, true)

if err != nil {
return nil, util.UserVisibleError(codes.PermissionDenied, "cannot get access token for provider: did you run `minder provider enroll`?")
return nil, util.UserVisibleError(codes.PermissionDenied,
"cannot get access token for provider: did you run `minder provider enroll`?")
}

pbOpts := []providers.ProviderBuilderOption{
Expand Down

0 comments on commit 4b6c15d

Please sign in to comment.