mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-09 07:56:22 -06:00
Missing import.
This commit is contained in:
parent
b83e34aa24
commit
8f892553cc
1 changed files with 2 additions and 1 deletions
|
@ -9,6 +9,7 @@ from UM.Scene.ToolHandle import ToolHandle
|
|||
from UM.Scene.Iterator.DepthFirstIterator import DepthFirstIterator
|
||||
from UM.Mesh.WriteMeshJob import WriteMeshJob
|
||||
from UM.Mesh.ReadMeshJob import ReadMeshJob
|
||||
from UM.Logger import Logger
|
||||
|
||||
from UM.Scene.BoxRenderer import BoxRenderer
|
||||
from UM.Scene.Selection import Selection
|
||||
|
@ -331,6 +332,6 @@ class PrinterApplication(QtApplication):
|
|||
})
|
||||
|
||||
for device in self._output_devices:
|
||||
if not device in drives:
|
||||
if device not in drives:
|
||||
if self._output_devices[device]['function'] == self._writeToSD:
|
||||
self.removeOutputDevice(device)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue