Skip to content

Commit

Permalink
Fix goimports
Browse files Browse the repository at this point in the history
  • Loading branch information
andydotxyz committed Jan 23, 2021
1 parent 89abccb commit 82a297f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion counter/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ func main() {
count := binding.NewInt()
button := widget.NewButton("Count", func() {
i, _ := count.Get()
_ = count.Set(i+1)
_ = count.Set(i + 1)
})

w.SetContent(container.NewGridWithColumns(2,
Expand Down
2 changes: 1 addition & 1 deletion temperature-converter/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,4 @@ func (c *cToF) Set(f float64) error {

func celsiusToFarenheit(in binding.Float) binding.Float {
return &cToF{in}
}
}

0 comments on commit 82a297f

Please sign in to comment.