Skip to content

Commit a7f7cfa

Browse files
committed
linty
1 parent d088255 commit a7f7cfa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

adafruit_magtag/graphics.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,9 +155,9 @@ def qrcode(
155155
import adafruit_miniqr # pylint: disable=import-outside-toplevel
156156

157157
# generate the QR code
158-
for type in range(1, 5):
158+
for qrtype in range(1, 5):
159159
try:
160-
qrcode = adafruit_miniqr.QRCode(qr_type=type)
160+
qrcode = adafruit_miniqr.QRCode(qr_type=qrtype)
161161
qrcode.add_data(qr_data)
162162
qrcode.make()
163163
break

0 commit comments

Comments
 (0)