From c48cf323ee34681571ad199ad82a9f98ed1062dd Mon Sep 17 00:00:00 2001 From: Matthias Diester Date: Thu, 9 Jan 2025 10:47:54 +0100 Subject: [PATCH] Use standard libary `slices` import Use `slices` import from standard library. --- pkg/interactive/edit.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pkg/interactive/edit.go b/pkg/interactive/edit.go index a8d8d42..cebd87f 100644 --- a/pkg/interactive/edit.go +++ b/pkg/interactive/edit.go @@ -24,9 +24,8 @@ import ( "fmt" "os" "os/exec" + "slices" "strings" - - "golang.org/x/exp/slices" ) func Edit(input string) (output string, err error) {