Skip to content

Commit 5433ea8

Browse files
committed
style: auto-format code with goimports
Run goimports to properly order imports according to Go conventions
1 parent 55079b9 commit 5433ea8

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

llama3/cmd/llama3/decode.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,9 @@ import (
77
"strconv"
88
"strings"
99

10-
"github.com/agentstation/tokenizer/llama3"
1110
"github.com/spf13/cobra"
11+
12+
"github.com/agentstation/tokenizer/llama3"
1213
)
1314

1415
var (

llama3/cmd/llama3/encode.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,9 @@ import (
77
"os"
88
"strings"
99

10-
"github.com/agentstation/tokenizer/llama3"
1110
"github.com/spf13/cobra"
11+
12+
"github.com/agentstation/tokenizer/llama3"
1213
)
1314

1415
var (

llama3/cmd/llama3/info.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,9 @@ package llama3cmd
33
import (
44
"fmt"
55

6-
"github.com/agentstation/tokenizer/llama3"
76
"github.com/spf13/cobra"
7+
8+
"github.com/agentstation/tokenizer/llama3"
89
)
910

1011
// newInfoCmd creates the info subcommand.

llama3/cmd/llama3/stream.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,9 @@ import (
44
"fmt"
55
"os"
66

7-
"github.com/agentstation/tokenizer/llama3"
87
"github.com/spf13/cobra"
8+
9+
"github.com/agentstation/tokenizer/llama3"
910
)
1011

1112
var (

0 commit comments

Comments
 (0)