Skip to content

Commit

Permalink
[FIX] QR Code box_size
Browse files Browse the repository at this point in the history
  • Loading branch information
TRIX.Hosting committed Mar 6, 2021
1 parent bcba832 commit c7d966d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion l10n_ar_afipws_fe/models/invoice.py
Expand Up @@ -184,7 +184,7 @@ def _make_image_QR(self, qr_code):
""" Generate the required QR code """
image = False
if qr_code:
qr_obj = qrcode.QRCode()
qr_obj = qrcode.QRCode(box_size=3)
output = BytesIO()
qr_obj.add_data(qr_code)
qr_obj.make(fit=True)
Expand Down

0 comments on commit c7d966d

Please sign in to comment.