Cleanup imports for ContainerManager

This commit is contained in:
Lipu Fei 2018-03-03 15:07:42 +01:00
parent 41b7468460
commit 5d5932547c

View file

@ -1,7 +1,6 @@
# Copyright (c) 2017 Ultimaker B.V. # Copyright (c) 2017 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.
import copy
import os.path import os.path
import urllib.parse import urllib.parse
import uuid import uuid
@ -29,10 +28,10 @@ from UM.i18n import i18nCatalog
from cura.Settings.ExtruderManager import ExtruderManager from cura.Settings.ExtruderManager import ExtruderManager
from cura.Settings.ExtruderStack import ExtruderStack from cura.Settings.ExtruderStack import ExtruderStack
from cura.Machines.QualityManager import getMachineDefinitionIDForQualitySearch
catalog = i18nCatalog("cura") catalog = i18nCatalog("cura")
## Manager class that contains common actions to deal with containers in Cura. ## Manager class that contains common actions to deal with containers in Cura.
# #
# This is primarily intended as a class to be able to perform certain actions # This is primarily intended as a class to be able to perform certain actions