import Win32Raw

This commit is contained in:
Patrick Kanzler 2023-08-17 00:50:04 +02:00
parent e4424dca00
commit 98bb153c7f

View File

@ -1,7 +1,6 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
"""printer implementations.""" """printer implementations."""
# from .win32raw import Win32Raw
from .cups import CupsPrinter from .cups import CupsPrinter
from .dummy import Dummy from .dummy import Dummy
from .file import File from .file import File
@ -9,6 +8,7 @@ from .lp import LP
from .network import Network from .network import Network
from .serial import Serial from .serial import Serial
from .usb import Usb from .usb import Usb
from .win32raw import Win32Raw
__all__ = [ __all__ = [
"Usb", "Usb",
@ -18,7 +18,7 @@ __all__ = [
"LP", "LP",
"Dummy", "Dummy",
"CupsPrinter", "CupsPrinter",
# "Win32Raw", "Win32Raw",
] ]
# TODO check which printers are importable and add only those to the namespace # TODO check which printers are importable and add only those to the namespace