1
0
mirror of https://github.com/python-escpos/python-escpos synced 2025-09-13 09:09:58 +00:00

format with black

This commit is contained in:
Patrick Kanzler
2023-04-19 22:11:09 +02:00
parent cbf887ed02
commit 70d4da1364
5 changed files with 16 additions and 16 deletions

View File

@@ -1078,7 +1078,7 @@ class EscposIO(object):
for line in lines:
self.printer.set(**params)
if isinstance(text, six.text_type):
self.printer.text(u"{0}\n".format(line))
self.printer.text("{0}\n".format(line))
else:
self.printer.text("{0}\n".format(line))