From afb5e35d2e28c2f53c75237244d29756a7d00668 Mon Sep 17 00:00:00 2001 From: Eoin McAfee Date: Thu, 3 Jun 2021 14:20:28 +0100 Subject: [PATCH] another import grouping change. --- plugin/converter/template.go | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/plugin/converter/template.go b/plugin/converter/template.go index 0c9cd4406..1aefe8525 100644 --- a/plugin/converter/template.go +++ b/plugin/converter/template.go @@ -17,14 +17,13 @@ package converter import ( "context" "errors" + "regexp" + "strings" "github.com/drone/drone/core" "github.com/drone/drone/plugin/converter/jsonnet" "github.com/drone/drone/plugin/converter/starlark" - "regexp" - "strings" - "gopkg.in/yaml.v2" )