From 98bb153c7fc61ddef74962bd68ede326fc4e05b5 Mon Sep 17 00:00:00 2001 From: Patrick Kanzler Date: Thu, 17 Aug 2023 00:50:04 +0200 Subject: [PATCH] import Win32Raw --- src/escpos/printer/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/escpos/printer/__init__.py b/src/escpos/printer/__init__.py index 21d07f8..09906f2 100644 --- a/src/escpos/printer/__init__.py +++ b/src/escpos/printer/__init__.py @@ -1,7 +1,6 @@ # -*- coding: utf-8 -*- """printer implementations.""" -# from .win32raw import Win32Raw from .cups import CupsPrinter from .dummy import Dummy from .file import File @@ -9,6 +8,7 @@ from .lp import LP from .network import Network from .serial import Serial from .usb import Usb +from .win32raw import Win32Raw __all__ = [ "Usb", @@ -18,7 +18,7 @@ __all__ = [ "LP", "Dummy", "CupsPrinter", - # "Win32Raw", + "Win32Raw", ] # TODO check which printers are importable and add only those to the namespace