From aa9e68d884e82ed417d40da2afac62e9fac2f7c3 Mon Sep 17 00:00:00 2001 From: nicktobey Date: Fri, 25 Jul 2025 21:18:39 +0000 Subject: [PATCH] [ga-format-pr] Run go/utils/repofmt/format_repo.sh and go/Godeps/update.sh --- go/cmd/dolt/commands/admin/storage.go | 3 ++- go/store/nbs/archive_reader.go | 7 ++++--- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/go/cmd/dolt/commands/admin/storage.go b/go/cmd/dolt/commands/admin/storage.go index 74bfe5f6a4..0bd06003ca 100644 --- a/go/cmd/dolt/commands/admin/storage.go +++ b/go/cmd/dolt/commands/admin/storage.go @@ -17,9 +17,10 @@ package admin import ( "context" "fmt" - "github.com/dolthub/dolt/go/libraries/utils/config" "strconv" + "github.com/dolthub/dolt/go/libraries/utils/config" + "github.com/dolthub/dolt/go/cmd/dolt/cli" "github.com/dolthub/dolt/go/libraries/doltcore/env" "github.com/dolthub/dolt/go/libraries/utils/argparser" diff --git a/go/store/nbs/archive_reader.go b/go/store/nbs/archive_reader.go index 63ff0aa11c..e5a3124464 100644 --- a/go/store/nbs/archive_reader.go +++ b/go/store/nbs/archive_reader.go @@ -21,13 +21,14 @@ import ( "encoding/json" "errors" "fmt" - "github.com/dolthub/dolt/go/libraries/doltcore/dconfig" - "github.com/dolthub/gozstd" - lru "github.com/hashicorp/golang-lru/v2" "io" "math/bits" "os" + "github.com/dolthub/gozstd" + lru "github.com/hashicorp/golang-lru/v2" + + "github.com/dolthub/dolt/go/libraries/doltcore/dconfig" "github.com/dolthub/dolt/go/store/chunks" "github.com/dolthub/dolt/go/store/hash" )