From 5b9fece0930a1201c06851ba83d2409d411a0e23 Mon Sep 17 00:00:00 2001 From: Federico Torres Date: Thu, 1 Aug 2024 11:18:14 -0300 Subject: [PATCH] Fix format Signed-off-by: Federico Torres --- expfmt/text_parse.go | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/expfmt/text_parse.go b/expfmt/text_parse.go index cfc73bbd..bdb419ee 100644 --- a/expfmt/text_parse.go +++ b/expfmt/text_parse.go @@ -18,14 +18,15 @@ import ( "bytes" "errors" "fmt" - dto "github.com/prometheus/client_model/go" - "github.com/prometheus/common/model" - "google.golang.org/protobuf/proto" "io" "math" "strconv" "strings" "unicode/utf8" + + dto "github.com/prometheus/client_model/go" + "github.com/prometheus/common/model" + "google.golang.org/protobuf/proto" ) // A stateFn is a function that represents a state in a state machine. By