Skip to content

Commit

Permalink
gofumpt
Browse files Browse the repository at this point in the history
  • Loading branch information
danog committed Oct 17, 2024
1 parent 53bd5a0 commit eabfe53
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
8 changes: 5 additions & 3 deletions expressions/scanner.go
Original file line number Diff line number Diff line change
Expand Up @@ -203,9 +203,11 @@ var _expression_eof_trans []int16 = []int16{
67, 67, 50,
}

const expression_start int = 23
const expression_first_final int = 23
const expression_error int = -1
const (
expression_start int = 23
expression_first_final int = 23
expression_error int = -1
)

const expression_en_main int = 23

Expand Down
3 changes: 2 additions & 1 deletion render/render.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,12 @@ package render
import (
"errors"
"fmt"
"github.com/osteele/liquid/parser"
"io"
"reflect"
"time"

"github.com/osteele/liquid/parser"

"github.com/osteele/liquid/values"
)

Expand Down
3 changes: 2 additions & 1 deletion render/render_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,12 @@ import (
"bytes"
"errors"
"fmt"
e "github.com/osteele/liquid/expressions"
"io"
"testing"
"time"

e "github.com/osteele/liquid/expressions"

"github.com/osteele/liquid/parser"
"github.com/stretchr/testify/require"
)
Expand Down

0 comments on commit eabfe53

Please sign in to comment.