From d877fca09260e55e919690dc72e6be448f375fd2 Mon Sep 17 00:00:00 2001 From: Mark Sagi-Kazar Date: Fri, 22 Feb 2019 21:43:55 +0100 Subject: [PATCH] Fix coding style --- storage/sql/sql.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/storage/sql/sql.go b/storage/sql/sql.go index d27b67ce..26e65f7d 100644 --- a/storage/sql/sql.go +++ b/storage/sql/sql.go @@ -3,13 +3,14 @@ package sql import ( "database/sql" - "github.com/dexidp/dex/pkg/log" "regexp" "time" // import third party drivers _ "github.com/lib/pq" _ "github.com/mattn/go-sqlite3" + + "github.com/dexidp/dex/pkg/log" ) // flavor represents a specific SQL implementation, and is used to translate query strings