1
0
mirror of https://github.com/python-escpos/python-escpos synced 2025-08-24 09:03:34 +00:00

fixed code tabulators

This commit is contained in:
Manuel F Martinez
2014-05-20 23:50:06 -07:00
parent 8a3850ea64
commit 708f7e97d1
2 changed files with 3 additions and 2 deletions

View File

@@ -31,7 +31,7 @@ class Usb(Escpos):
self.interface = interface
self.in_ep = in_ep
self.out_ep = out_ep
self.open()
self.open()
def open(self):
@@ -151,7 +151,7 @@ class File(Escpos):
def open(self):
""" Open system file """
self.device = open(self.devfile, "wb")
self.device = open(self.devfile, "wb")
if self.device is None:
print "Could not open the specified file %s" % self.devfile