revert to prevent circular dependency

This commit is contained in:
ChrisTerBeke 2019-01-14 10:52:50 +01:00
parent 13d390a7d9
commit 1e2a8aa23e

View file

@ -1,11 +1,11 @@
# Copyright (c) 2018 Ultimaker B.V.
# Cura is released under the terms of the LGPLv3 or higher.
from UM.OutputDevice.OutputDevice import OutputDevice
from cura.PrinterOutput.PrinterOutputController import PrinterOutputController
from .CloudOutputDevice import CloudOutputDevice
class CloudOutputController(PrinterOutputController):
def __init__(self, output_device: CloudOutputDevice) -> None:
def __init__(self, output_device: "OutputDevice") -> None:
super().__init__(output_device)
# The cloud connection only supports fetching the printer and queue status and adding a job to the queue.