Browse Source

Fixed import ordering.

Pierre Curto 6 years ago
parent
commit
fa7f2e9106
1 changed files with 2 additions and 1 deletions
  1. 2 1
      internal/cmds/uncompress.go

+ 2 - 1
internal/cmds/uncompress.go

@@ -3,11 +3,12 @@ package cmds
 import (
 	"flag"
 	"fmt"
-	"github.com/schollz/progressbar/v2"
 	"io"
 	"os"
 	"strings"
 
+	"github.com/schollz/progressbar/v2"
+
 	"github.com/pierrec/lz4"
 	"github.com/pierrec/lz4/internal/cmdflag"
 )