From 82a297f41a458b43e16433a335e73a274976f530 Mon Sep 17 00:00:00 2001 From: Andy Williams Date: Sat, 23 Jan 2021 18:17:34 +0000 Subject: [PATCH] Fix goimports --- counter/main.go | 2 +- temperature-converter/main.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/counter/main.go b/counter/main.go index 0cae9ae..12838a4 100644 --- a/counter/main.go +++ b/counter/main.go @@ -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, diff --git a/temperature-converter/main.go b/temperature-converter/main.go index 4804edb..e0b2f81 100644 --- a/temperature-converter/main.go +++ b/temperature-converter/main.go @@ -44,4 +44,4 @@ func (c *cToF) Set(f float64) error { func celsiusToFarenheit(in binding.Float) binding.Float { return &cToF{in} -} \ No newline at end of file +}