Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
hgiasac committed Jan 11, 2025
1 parent e3947ed commit 8186471
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion connector/collection/object.go
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ func (coe *CollectionObjectExecutor) Execute(ctx context.Context) (*schema.RowSe
}, nil
}

func (coe *CollectionObjectExecutor) sortObjects(objects []common.StorageObject, orderBys []ColumnOrder) []common.StorageObject { //nolint:funlen,gocognit,gocyclo
func (coe *CollectionObjectExecutor) sortObjects(objects []common.StorageObject, orderBys []ColumnOrder) []common.StorageObject { //nolint:funlen,gocognit,gocyclo,cyclop
slices.SortFunc(objects, func(a, b common.StorageObject) int {
for _, ob := range orderBys {
ordering := 1
Expand Down

0 comments on commit 8186471

Please sign in to comment.