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 14598a7 commit 08b8f76Copy full SHA for 08b8f76
barcode/writer.py
@@ -283,8 +283,8 @@ def render(self, code):
283
ypos += pt2mm(self.font_size)
284
285
blocks = self.text
286
- for (text, xpos) in zip(blocks, text["xpos"]):
287
- self.text = text
+ for (text_, xpos) in zip(blocks, text["xpos"]):
+ self.text = text_
288
self._callbacks["paint_text"](xpos, ypos)
289
290
return self._callbacks["finish"]()
0 commit comments