Skip to content

Commit

Permalink
fix order of imports
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbozhenko committed Feb 7, 2024
1 parent b41219c commit 76bced5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
3 changes: 1 addition & 2 deletions src/cmd/fix/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,13 @@ import (
"go/scanner"
"go/token"
"go/version"
"internal/diff"
"io"
"io/fs"
"os"
"path/filepath"
"sort"
"strings"

"internal/diff"
)

var (
Expand Down
5 changes: 2 additions & 3 deletions src/cmd/fix/main_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,10 @@ import (
"fmt"
"go/ast"
"go/parser"
"strings"
"testing"

"internal/diff"
"internal/testenv"
"strings"
"testing"
)

type testCase struct {
Expand Down

0 comments on commit 76bced5

Please sign in to comment.