Skip to content

Commit

Permalink
reporter: fix lint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
oleksandr-codefresh committed Nov 13, 2024
1 parent b4f6526 commit 424b68b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions event_reporter/utils/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,10 @@ import appv1 "github.com/argoproj/argo-cd/v2/pkg/apis/application/v1alpha1"

type AppRevisionsFieldNames string

var AppRevisionFieldName AppRevisionsFieldNames = "Revision"
var AppRevisionsFieldName AppRevisionsFieldNames = "Revisions"
var (
AppRevisionFieldName AppRevisionsFieldNames = "Revision"
AppRevisionsFieldName AppRevisionsFieldNames = "Revisions"
)

type AppUtils struct {
App *appv1.Application
Expand Down

0 comments on commit 424b68b

Please sign in to comment.