Skip to content

Commit 872cba9

Browse files
author
Hugo Osvaldo Barrera
committed
Fix some style violations
1 parent 620778c commit 872cba9

1 file changed

Lines changed: 5 additions & 4 deletions

File tree

barcode/upc.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,11 @@ def __init__(self, upc, writer=None, make_ean=False):
2424
"""Initializes new UPC-A barcode.
2525
2626
:param str upc: The upc number as string.
27-
:param writer: barcode.writer instance. The writer to render the barcode
28-
(default: SVGWriter).
29-
:param bool make_ean: Indicates if a leading zero should be added to the
30-
barcode. This converts the UPC into a valid European Article Number (EAN).
27+
:param writer: barcode.writer instance. The writer to render the
28+
barcode (default: SVGWriter).
29+
:param bool make_ean: Indicates if a leading zero should be added to
30+
the barcode. This converts the UPC into a valid European Article
31+
Number (EAN).
3132
"""
3233
self.ean = make_ean
3334
upc = upc[:self.digits]

0 commit comments

Comments
 (0)