We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 94f8be8 commit b9f4cc8Copy full SHA for b9f4cc8
1 file changed
barcode/codex.py
@@ -73,7 +73,7 @@ def build(self):
73
chars.append(code39.EDGE)
74
return [code39.MIDDLE.join(chars)]
75
76
- def render(self, writer_options, text=None):
+ def render(self, writer_options=None, text=None):
77
options = dict(module_width=MIN_SIZE, quiet_zone=MIN_QUIET_ZONE)
78
options.update(writer_options or {})
79
return Barcode.render(self, options, text)
@@ -252,7 +252,7 @@ def build(self):
252
code += '11'
253
return [code]
254
255
256
257
258
0 commit comments