cleanup unused variable

This commit is contained in:
Pavol Rusnak 2022-08-31 12:01:16 +02:00
parent 66aa82f8a8
commit 5af53074b5
No known key found for this signature in database
GPG key ID: 91F3B339B9A02A3D

View file

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