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 -*-
"""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