STAR-322: Creating a subclass for connect devices

This commit is contained in:
Daniel Schiavini 2018-12-05 10:37:58 +01:00
parent 8ea4edf67e
commit 01e443049f
4 changed files with 22 additions and 13 deletions

View file

@ -0,0 +1,8 @@
# Copyright (c) 2018 Ultimaker B.V.
# Cura is released under the terms of the LGPLv3 or higher.
from cura.PrinterOutput.NetworkedPrinterOutputDevice import NetworkedPrinterOutputDevice
## this is the base class for the UM3 output devices (via connect or cloud)
class BaseCuraConnectDevice(NetworkedPrinterOutputDevice):
pass