summaryrefslogtreecommitdiffstats
path: root/tpl/collections/collections.go
diff options
context:
space:
mode:
Diffstat (limited to 'tpl/collections/collections.go')
-rw-r--r--tpl/collections/collections.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/tpl/collections/collections.go b/tpl/collections/collections.go
index 24f43e62c..516e2c272 100644
--- a/tpl/collections/collections.go
+++ b/tpl/collections/collections.go
@@ -24,12 +24,13 @@ import (
"strings"
"time"
+ "errors"
+
"github.com/gohugoio/hugo/common/collections"
"github.com/gohugoio/hugo/common/maps"
"github.com/gohugoio/hugo/common/types"
"github.com/gohugoio/hugo/deps"
"github.com/gohugoio/hugo/helpers"
- "github.com/pkg/errors"
"github.com/spf13/cast"
)
@@ -736,7 +737,7 @@ func (ns *Namespace) Uniq(seq any) (any, error) {
case reflect.Array:
slice = reflect.MakeSlice(reflect.SliceOf(v.Type().Elem()), 0, 0)
default:
- return nil, errors.Errorf("type %T not supported", seq)
+ return nil, fmt.Errorf("type %T not supported", seq)
}
seen := make(map[any]bool)