Skip to content

Commit bdf9d0d

Browse files
committed
readme update2
1 parent ccb90b7 commit bdf9d0d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

qrreader.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44

55
def read_qrcode_from_image(filename):
66
"""Reads imagefile and returns list of decoded data"""
7-
img = Image.open(filename)
8-
output = pyzbar.decode(img)
9-
return output
7+
imgage = Image.open(filename)
8+
datalist_from_image = pyzbar.decode(imgage)
9+
return datalist_from_image

tasks.robot

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
*** Settings ***
2-
Documentation Reads QR code image from file
2+
Documentation Reads QR code image from file. Logs output
33
44
Library qrreader
55

0 commit comments

Comments
 (0)