Hello,
I ́m trying to set the quiet_zone very low. e.g. 0.6.
I fixed the order in the base.py render function:
Line 105 and 106:
Removed this:
options = Barcode.default_writer_options.copy()
options.update(writer_options or {})
Instead I added this:
writer_options.update(Barcode.default_writer_options)
options = writer_options.copy()
Now its working. I ́m new to github. Dont know how to make a pull request
Hello,
I ́m trying to set the quiet_zone very low. e.g. 0.6.
I fixed the order in the base.py render function:
Line 105 and 106:
Removed this:
options = Barcode.default_writer_options.copy()
options.update(writer_options or {})
Instead I added this:
writer_options.update(Barcode.default_writer_options)
options = writer_options.copy()
Now its working. I ́m new to github. Dont know how to make a pull request