Bläddra i källkod

Fixed import ordering.

Pierre Curto 6 år sedan
förälder
incheckning
fa7f2e9106
1 ändrade filer med 2 tillägg och 1 borttagningar
  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"
 )