mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-11 16:57:51 -06:00
revert to prevent circular dependency
This commit is contained in:
parent
13d390a7d9
commit
1e2a8aa23e
1 changed files with 2 additions and 2 deletions
|
@ -1,11 +1,11 @@
|
||||||
# Copyright (c) 2018 Ultimaker B.V.
|
# Copyright (c) 2018 Ultimaker B.V.
|
||||||
# Cura is released under the terms of the LGPLv3 or higher.
|
# Cura is released under the terms of the LGPLv3 or higher.
|
||||||
|
from UM.OutputDevice.OutputDevice import OutputDevice
|
||||||
from cura.PrinterOutput.PrinterOutputController import PrinterOutputController
|
from cura.PrinterOutput.PrinterOutputController import PrinterOutputController
|
||||||
from .CloudOutputDevice import CloudOutputDevice
|
|
||||||
|
|
||||||
|
|
||||||
class CloudOutputController(PrinterOutputController):
|
class CloudOutputController(PrinterOutputController):
|
||||||
def __init__(self, output_device: CloudOutputDevice) -> None:
|
def __init__(self, output_device: "OutputDevice") -> None:
|
||||||
super().__init__(output_device)
|
super().__init__(output_device)
|
||||||
|
|
||||||
# The cloud connection only supports fetching the printer and queue status and adding a job to the queue.
|
# The cloud connection only supports fetching the printer and queue status and adding a job to the queue.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue