From 7c42fb5d75fd9a5aa01abaa852452875f07a1f61 Mon Sep 17 00:00:00 2001 From: kolaente Date: Fri, 12 Jul 2024 11:43:23 +0200 Subject: [PATCH] fix: lint --- pkg/models/tasks.go | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pkg/models/tasks.go b/pkg/models/tasks.go index 32e86cd14..0a5d04030 100644 --- a/pkg/models/tasks.go +++ b/pkg/models/tasks.go @@ -18,7 +18,6 @@ package models import ( "errors" - clone "github.com/huandu/go-clone/generic" "math" "regexp" "sort" @@ -26,8 +25,6 @@ import ( "strings" "time" - "github.com/typesense/typesense-go/typesense" - "code.vikunja.io/api/pkg/config" "code.vikunja.io/api/pkg/events" "code.vikunja.io/api/pkg/log" @@ -37,7 +34,9 @@ import ( "dario.cat/mergo" "github.com/google/uuid" + clone "github.com/huandu/go-clone/generic" "github.com/jinzhu/copier" + "github.com/typesense/typesense-go/typesense" "xorm.io/builder" "xorm.io/xorm" )