Skip to content

Commit

Permalink
fix: sort imports
Browse files Browse the repository at this point in the history
  • Loading branch information
iamnoah committed May 6, 2021
1 parent 1da425d commit 89f3012
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
3 changes: 2 additions & 1 deletion pkg/argocd/git.go
Expand Up @@ -9,11 +9,12 @@ import (
"path/filepath"
"text/template"

"github.com/argoproj-labs/argocd-image-updater/pkg/image"
"sigs.k8s.io/kustomize/pkg/commands/kustfile"
"sigs.k8s.io/kustomize/pkg/fs"
image2 "sigs.k8s.io/kustomize/pkg/image"

"github.com/argoproj-labs/argocd-image-updater/pkg/image"

"github.com/argoproj-labs/argocd-image-updater/ext/git"
"github.com/argoproj-labs/argocd-image-updater/pkg/log"

Expand Down
4 changes: 2 additions & 2 deletions pkg/argocd/git_test.go
@@ -1,8 +1,6 @@
package argocd

import (
"github.com/argoproj/argo-cd/pkg/apis/application/v1alpha1"
image2 "sigs.k8s.io/kustomize/pkg/image"
"testing"
"text/template"
"time"
Expand All @@ -11,7 +9,9 @@ import (
"github.com/argoproj-labs/argocd-image-updater/pkg/image"
"github.com/argoproj-labs/argocd-image-updater/pkg/tag"

"github.com/argoproj/argo-cd/pkg/apis/application/v1alpha1"
"github.com/stretchr/testify/assert"
image2 "sigs.k8s.io/kustomize/pkg/image"
)

func Test_TemplateCommitMessage(t *testing.T) {
Expand Down
3 changes: 1 addition & 2 deletions pkg/argocd/update.go
Expand Up @@ -17,10 +17,9 @@ import (
"github.com/argoproj-labs/argocd-image-updater/pkg/registry"
"github.com/argoproj-labs/argocd-image-updater/pkg/tag"

"gopkg.in/yaml.v2"

"github.com/argoproj/argo-cd/pkg/apiclient/application"
"github.com/argoproj/argo-cd/pkg/apis/application/v1alpha1"
"gopkg.in/yaml.v2"
)

// Stores some statistics about the results of a run
Expand Down

0 comments on commit 89f3012

Please sign in to comment.