Skip to content

Commit bb365eb

Browse files
author
Max Jonas Werner
committed
fix import order
Signed-off-by: Max Jonas Werner <[email protected]>
1 parent 88c761a commit bb365eb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

controllers/helmchart_controller.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,11 +60,11 @@ import (
6060
serror "github.com/fluxcd/source-controller/internal/error"
6161
"github.com/fluxcd/source-controller/internal/helm/chart"
6262
"github.com/fluxcd/source-controller/internal/helm/getter"
63+
"github.com/fluxcd/source-controller/internal/helm/registry"
6364
"github.com/fluxcd/source-controller/internal/helm/repository"
6465
sreconcile "github.com/fluxcd/source-controller/internal/reconcile"
6566
"github.com/fluxcd/source-controller/internal/reconcile/summarize"
6667
"github.com/fluxcd/source-controller/internal/util"
67-
"github.com/fluxcd/source-controller/internal/helm/registry"
6868
)
6969

7070
// helmChartReadyCondition contains all the conditions information
@@ -552,7 +552,7 @@ func (r *HelmChartReconciler) buildFromHelmRepository(ctx context.Context, obj *
552552
repository.WithMemoryCache(r.Storage.LocalPath(*repo.GetArtifact()), r.Cache, r.TTL, func(event string) {
553553
r.IncCacheEvents(event, obj.Name, obj.Namespace)
554554
}))
555-
if err != nil {
555+
if err != nil {
556556
return chartRepoErrorReturn(err, obj)
557557
}
558558
chartRepo = httpChartRepo

0 commit comments

Comments
 (0)