From 4fa87a50c3b8f2bc1eb7d49cf82c1df5f0235a0e Mon Sep 17 00:00:00 2001
From: Silas Davis <silas@erisindustries.com>
Date: Thu, 26 Jan 2017 15:08:19 +0000
Subject: [PATCH] split up imports

---
 util/hell/cmd/hell/main.go | 4 ++--
 util/hell/merge.go         | 1 -
 util/hell/merge_test.go    | 3 +--
 3 files changed, 3 insertions(+), 5 deletions(-)

diff --git a/util/hell/cmd/hell/main.go b/util/hell/cmd/hell/main.go
index 6b1bba7f..168ce0da 100644
--- a/util/hell/cmd/hell/main.go
+++ b/util/hell/cmd/hell/main.go
@@ -3,9 +3,10 @@ package main
 import (
 	"fmt"
 	"os"
-
 	"path/filepath"
 
+	"github.com/eris-ltd/eris-db/util/hell"
+
 	"github.com/Masterminds/glide/action"
 	"github.com/Masterminds/glide/cache"
 	"github.com/Masterminds/glide/cfg"
@@ -13,7 +14,6 @@ import (
 	"github.com/Masterminds/glide/path"
 	"github.com/Masterminds/glide/repo"
 	"github.com/Masterminds/glide/util"
-	"github.com/eris-ltd/eris-db/util/hell"
 	"github.com/spf13/cobra"
 )
 
diff --git a/util/hell/merge.go b/util/hell/merge.go
index f8fa01b6..915001f3 100644
--- a/util/hell/merge.go
+++ b/util/hell/merge.go
@@ -3,7 +3,6 @@ package hell
 import (
 	"crypto/sha256"
 	"fmt"
-
 	"sort"
 
 	"github.com/Masterminds/glide/cfg"
diff --git a/util/hell/merge_test.go b/util/hell/merge_test.go
index cd59f4d0..df44045a 100644
--- a/util/hell/merge_test.go
+++ b/util/hell/merge_test.go
@@ -1,9 +1,8 @@
 package hell
 
 import (
-	"testing"
-
 	"strings"
+	"testing"
 
 	"github.com/Masterminds/glide/cfg"
 	"github.com/stretchr/testify/assert"
-- 
GitLab