e.g. barcode.default_writer_options['quiet_zone'] = 10 isn´t working properly #41
Labels
No labels
api-inconsistency
automerge
bug
contributions welcome
documentation
duplicate
enhancement
good first issue
invalid
more-information-needed
question
sync
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
WhyNotHugo/python-barcode#41
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
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
hi, which area is the quiet_zone