From 897cbbc0c39f95fb89fe2d6608ef1bfa9c2cfbb9 Mon Sep 17 00:00:00 2001 From: Peter Wilson Date: Fri, 1 Sep 2023 10:37:22 +0100 Subject: [PATCH] make fmt fix (#22725) --- vault/seal/seal_wrapper.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/vault/seal/seal_wrapper.go b/vault/seal/seal_wrapper.go index 2e916da719..9581e2001d 100644 --- a/vault/seal/seal_wrapper.go +++ b/vault/seal/seal_wrapper.go @@ -5,10 +5,11 @@ import ( "context" "errors" "fmt" - wrapping "github.com/hashicorp/go-kms-wrapping/v2" mathrand "math/rand" "sync" "time" + + wrapping "github.com/hashicorp/go-kms-wrapping/v2" ) // SealWrapper contains a Wrapper and related information needed by the seal that uses it.