From 5af53074b53ebfdc0dda78807984a0ef7f28858c Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Wed, 31 Aug 2022 12:01:16 +0200 Subject: [PATCH] cleanup unused variable --- createboltcard/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/createboltcard/main.go b/createboltcard/main.go index 8d7b2eb..90fdf8d 100644 --- a/createboltcard/main.go +++ b/createboltcard/main.go @@ -74,6 +74,6 @@ func main() { fmt.Println() fmt.Println(url) fmt.Println() - q, err := qrcode.New(url, qrcode.Medium) + q, _ := qrcode.New(url, qrcode.Medium) fmt.Println(q.ToSmallString(false)) }