change meth0od
This commit is contained in:
parent
5323db351c
commit
b455a9e029
@ -72,7 +72,7 @@ class ThermalPrinter():
|
|||||||
self.p.set(align="left")
|
self.p.set(align="left")
|
||||||
self.p.text(x[0])
|
self.p.text(x[0])
|
||||||
if this_line_width < 32:
|
if this_line_width < 32:
|
||||||
self.p.text(" "*(32-this_line_width))
|
self.p.text("" + " "*(32-this_line_width))
|
||||||
else:
|
else:
|
||||||
# self.p.text(" ")
|
# self.p.text(" ")
|
||||||
todo_text_max_len = 32-(len(x[0])+1)
|
todo_text_max_len = 32-(len(x[0])+1)
|
||||||
@ -80,7 +80,7 @@ class ThermalPrinter():
|
|||||||
# t_text = textwrap.wrap()
|
# t_text = textwrap.wrap()
|
||||||
|
|
||||||
for t in todo_text:
|
for t in todo_text:
|
||||||
self.p.text(" "*(len(x[0])+1) )
|
self.p.text("" + " "*(len(x[0])+1) )
|
||||||
self.p.text(t + "\n")
|
self.p.text(t + "\n")
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user