소스 검색

Fixed import ordering.

Pierre Curto 6 년 전
부모
커밋
fa7f2e9106
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  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"
 )