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)) }