Browse Source

Remove a number of unused imports

Jaime van Kessel 4 years ago
parent
commit
2e9dca71ce

+ 1 - 1
cura/Arranging/Arrange.py

@@ -1,6 +1,6 @@
 # Copyright (c) 2020 Ultimaker B.V.
 # Copyright (c) 2020 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 typing import List, Optional
+from typing import Optional
 
 
 from UM.Scene.Iterator.DepthFirstIterator import DepthFirstIterator
 from UM.Scene.Iterator.DepthFirstIterator import DepthFirstIterator
 from UM.Logger import Logger
 from UM.Logger import Logger

+ 1 - 2
cura/Machines/Models/IntentCategoryModel.py

@@ -4,13 +4,12 @@
 import collections
 import collections
 from PyQt5.QtCore import Qt, QTimer
 from PyQt5.QtCore import Qt, QTimer
 from typing import TYPE_CHECKING, Optional, Dict
 from typing import TYPE_CHECKING, Optional, Dict
-from cura.Machines.Models.IntentTranslations import intent_translations
 
 
 from cura.Machines.Models.IntentModel import IntentModel
 from cura.Machines.Models.IntentModel import IntentModel
 from cura.Settings.IntentManager import IntentManager
 from cura.Settings.IntentManager import IntentManager
 from UM.Qt.ListModel import ListModel
 from UM.Qt.ListModel import ListModel
 from UM.Settings.ContainerRegistry import ContainerRegistry #To update the list if anything changes.
 from UM.Settings.ContainerRegistry import ContainerRegistry #To update the list if anything changes.
-from PyQt5.QtCore import pyqtProperty, pyqtSignal
+from PyQt5.QtCore import pyqtSignal
 import cura.CuraApplication
 import cura.CuraApplication
 if TYPE_CHECKING:
 if TYPE_CHECKING:
     from UM.Settings.ContainerRegistry import ContainerInterface
     from UM.Settings.ContainerRegistry import ContainerInterface

+ 0 - 2
cura/Machines/QualityGroup.py

@@ -3,8 +3,6 @@
 
 
 from typing import Dict, Optional, List, Set
 from typing import Dict, Optional, List, Set
 
 
-from PyQt5.QtCore import QObject, pyqtSlot
-
 from UM.Logger import Logger
 from UM.Logger import Logger
 from UM.Util import parseBool
 from UM.Util import parseBool
 
 

+ 0 - 1
cura/Operations/SetParentOperation.py

@@ -5,7 +5,6 @@ from typing import Optional
 from UM.Scene.SceneNode import SceneNode
 from UM.Scene.SceneNode import SceneNode
 from UM.Operations import Operation
 from UM.Operations import Operation
 
 
-from UM.Math.Vector import Vector
 
 
 
 
 ##  An operation that parents a scene node to another scene node.
 ##  An operation that parents a scene node to another scene node.

+ 0 - 1
cura/Settings/CuraStackBuilder.py

@@ -9,7 +9,6 @@ from UM.Settings.Interfaces import DefinitionContainerInterface
 from UM.Settings.InstanceContainer import InstanceContainer
 from UM.Settings.InstanceContainer import InstanceContainer
 
 
 from cura.Machines.ContainerTree import ContainerTree
 from cura.Machines.ContainerTree import ContainerTree
-from cura.Machines.MachineNode import MachineNode
 from .GlobalStack import GlobalStack
 from .GlobalStack import GlobalStack
 from .ExtruderStack import ExtruderStack
 from .ExtruderStack import ExtruderStack
 
 

+ 1 - 1
cura/Settings/IntentManager.py

@@ -2,7 +2,7 @@
 # Cura is released under the terms of the LGPLv3 or higher.
 # Cura is released under the terms of the LGPLv3 or higher.
 
 
 from PyQt5.QtCore import QObject, pyqtProperty, pyqtSignal, pyqtSlot
 from PyQt5.QtCore import QObject, pyqtProperty, pyqtSignal, pyqtSlot
-from typing import Any, Dict, List, Optional, Set, Tuple, TYPE_CHECKING
+from typing import Any, Dict, List, Set, Tuple, TYPE_CHECKING
 
 
 from UM.Logger import Logger
 from UM.Logger import Logger
 from UM.Settings.InstanceContainer import InstanceContainer
 from UM.Settings.InstanceContainer import InstanceContainer

+ 1 - 2
cura/Settings/SimpleModeSettingsManager.py

@@ -1,8 +1,7 @@
 # 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.
-from typing import Set
 
 
-from PyQt5.QtCore import QObject, pyqtSignal, pyqtProperty, pyqtSlot
+from PyQt5.QtCore import QObject, pyqtSignal, pyqtProperty
 
 
 from UM.Application import Application
 from UM.Application import Application
 
 

+ 1 - 1
cura/UI/ObjectsModel.py

@@ -2,7 +2,7 @@
 # Cura is released under the terms of the LGPLv3 or higher.
 # Cura is released under the terms of the LGPLv3 or higher.
 from UM.Logger import Logger
 from UM.Logger import Logger
 import re
 import re
-from typing import Any, Dict, List, Optional, Union
+from typing import Dict, List, Optional, Union
 
 
 from PyQt5.QtCore import QTimer, Qt
 from PyQt5.QtCore import QTimer, Qt
 
 

+ 1 - 1
plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py

@@ -9,7 +9,7 @@ from UM.Version import Version
 
 
 import urllib.request
 import urllib.request
 from urllib.error import URLError
 from urllib.error import URLError
-from typing import Dict, Optional
+from typing import Dict
 import ssl
 import ssl
 
 
 import certifi
 import certifi

+ 3 - 4
plugins/PostProcessingPlugin/scripts/Stretch.py

@@ -10,10 +10,10 @@ WARNING This script has never been tested with several extruders
 from ..Script import Script
 from ..Script import Script
 import numpy as np
 import numpy as np
 from UM.Logger import Logger
 from UM.Logger import Logger
-from UM.Application import Application
 import re
 import re
 from cura.Settings.ExtruderManager import ExtruderManager
 from cura.Settings.ExtruderManager import ExtruderManager
 
 
+
 def _getValue(line, key, default=None):
 def _getValue(line, key, default=None):
     """
     """
     Convenience function that finds the value in a line of g-code.
     Convenience function that finds the value in a line of g-code.
@@ -30,6 +30,7 @@ def _getValue(line, key, default=None):
         return default
         return default
     return float(number.group(0))
     return float(number.group(0))
 
 
+
 class GCodeStep():
 class GCodeStep():
     """
     """
     Class to store the current value of each G_Code parameter
     Class to store the current value of each G_Code parameter
@@ -85,7 +86,7 @@ class GCodeStep():
 
 
 
 
 # Execution part of the stretch plugin
 # Execution part of the stretch plugin
-class Stretcher():
+class Stretcher:
     """
     """
     Execution part of the stretch algorithm
     Execution part of the stretch algorithm
     """
     """
@@ -207,7 +208,6 @@ class Stretcher():
             return False
             return False
         return True # New sequence
         return True # New sequence
 
 
-
     def processLayer(self, layer_steps):
     def processLayer(self, layer_steps):
         """
         """
         Computes the new coordinates of g-code steps
         Computes the new coordinates of g-code steps
@@ -291,7 +291,6 @@ class Stretcher():
             else:
             else:
                 self.layergcode = self.layergcode + layer_steps[i].comment + "\n"
                 self.layergcode = self.layergcode + layer_steps[i].comment + "\n"
 
 
-
     def workOnSequence(self, orig_seq, modif_seq):
     def workOnSequence(self, orig_seq, modif_seq):
         """
         """
         Computes new coordinates for a sequence
         Computes new coordinates for a sequence

Some files were not shown because too many files changed in this diff