Skip to content

Commit

Permalink
style: format code with Gofumpt and Prettier
Browse files Browse the repository at this point in the history
This commit fixes the style issues introduced in 019a705 according to the output
from Gofumpt and Prettier.

Details: #2216
  • Loading branch information
deepsource-autofix[bot] authored and vankichi committed Dec 26, 2023
1 parent c1e3521 commit 71e5d0b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pkg/tools/benchmark/job/handler/rest/handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ package rest

type Handler interface{}

type handler struct {}
type handler struct{}

func New(opts ...Option) Handler {
h := new(handler)
Expand Down
3 changes: 1 addition & 2 deletions pkg/tools/benchmark/operator/handler/rest/handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,7 @@ package rest

type Handler interface{}

type handler struct {
}
type handler struct{}

func New(opts ...Option) Handler {
h := new(handler)
Expand Down

0 comments on commit 71e5d0b

Please sign in to comment.