From 79828f57c9c8d9037a4e688646441f2f26ba84e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=80=97=E5=AD=90?= Date: Fri, 28 Nov 2025 04:22:42 +0800 Subject: [PATCH] fix: lint --- internal/data/helper.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/data/helper.go b/internal/data/helper.go index 29e82ae8..3e9c47ff 100644 --- a/internal/data/helper.go +++ b/internal/data/helper.go @@ -7,7 +7,7 @@ import ( ) func getDockerClient(sock string) (*client.Client, error) { - apiClient, err := client.New(client.WithHost(fmt.Sprintf("unix://%s", sock)), client.WithAPIVersionNegotiation()) + apiClient, err := client.New(client.WithHost(fmt.Sprintf("unix://%s", sock))) if err != nil { return nil, err }