From a8e5096beb1bd455a6287422dc1eff3e047596c3 Mon Sep 17 00:00:00 2001 From: William Perron Date: Thu, 10 Feb 2022 12:57:46 -0500 Subject: [PATCH] revert import re-ordering --- prometheus/go_collector_go117.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prometheus/go_collector_go117.go b/prometheus/go_collector_go117.go index a34a26663..d43bdcdda 100644 --- a/prometheus/go_collector_go117.go +++ b/prometheus/go_collector_go117.go @@ -23,9 +23,9 @@ import ( "strings" "sync" - "github.com/prometheus/client_golang/prometheus/internal" //nolint:staticcheck // Ignore SA1019. Need to keep deprecated package for compatibility. "github.com/golang/protobuf/proto" + "github.com/prometheus/client_golang/prometheus/internal" dto "github.com/prometheus/client_model/go" )