mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-05-02 00:34:26 +08:00
9 lines
371 B
Python
9 lines
371 B
Python
from cura.PrinterOutput.NetworkedPrinterOutputDevice import NetworkedPrinterOutputDevice
|
|
|
|
class LegacyUM3OutputDevice(NetworkedPrinterOutputDevice):
|
|
def __init__(self, device_id, address: str, properties, parent = None):
|
|
super().__init__(device_id = device_id, address = address, properties = properties, parent = parent)
|
|
|
|
def _update(self):
|
|
pass
|