Remove a number of unused imports

This commit is contained in:
Jaime van Kessel 2020-04-10 13:58:10 +02:00
parent fe27da5e8a
commit 2e9dca71ce
No known key found for this signature in database
GPG key ID: 3710727397403C91
18 changed files with 10 additions and 26 deletions

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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.

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -6,7 +6,6 @@ from PyQt5.QtNetwork import QNetworkReply, QNetworkRequest
from UM.Job import Job from UM.Job import Job
from UM.Logger import Logger from UM.Logger import Logger
from UM.Settings import ContainerRegistry
from cura.CuraApplication import CuraApplication from cura.CuraApplication import CuraApplication
from ..Models.Http.ClusterMaterial import ClusterMaterial from ..Models.Http.ClusterMaterial import ClusterMaterial

View file

@ -5,7 +5,6 @@ import copy
import io import io
import json #To parse the product-to-id mapping file. import json #To parse the product-to-id mapping file.
import os.path #To find the product-to-id mapping. import os.path #To find the product-to-id mapping.
import sys
from typing import Any, Dict, List, Optional, Tuple, cast, Set, Union from typing import Any, Dict, List, Optional, Tuple, cast, Set, Union
import xml.etree.ElementTree as ET import xml.etree.ElementTree as ET
@ -18,7 +17,6 @@ from UM.Settings.ContainerRegistry import ContainerRegistry
from UM.ConfigurationErrorMessage import ConfigurationErrorMessage from UM.ConfigurationErrorMessage import ConfigurationErrorMessage
from cura.CuraApplication import CuraApplication from cura.CuraApplication import CuraApplication
from cura.Machines.ContainerTree import ContainerTree
from cura.Machines.VariantType import VariantType from cura.Machines.VariantType import VariantType
try: try:

View file

@ -1,6 +1,4 @@
from unittest.mock import patch, MagicMock from unittest.mock import patch, MagicMock
import sys
import os
# Prevents error: "PyCapsule_GetPointer called with incorrect name" with conflicting SIP configurations between Arcus and PyQt: Import Arcus and Savitar first! # Prevents error: "PyCapsule_GetPointer called with incorrect name" with conflicting SIP configurations between Arcus and PyQt: Import Arcus and Savitar first!
import Savitar # Dont remove this line import Savitar # Dont remove this line

View file

@ -3,7 +3,6 @@
from unittest.mock import patch, MagicMock from unittest.mock import patch, MagicMock
import pytest import pytest
from UM.Settings.DefinitionContainer import DefinitionContainer
from cura.Machines.ContainerTree import ContainerTree from cura.Machines.ContainerTree import ContainerTree
from cura.Settings.GlobalStack import GlobalStack from cura.Settings.GlobalStack import GlobalStack

View file

@ -5,7 +5,6 @@ import os #To find the directory with test files and find the test files.
import pytest #To parameterize tests. import pytest #To parameterize tests.
import unittest.mock #To mock and monkeypatch stuff. import unittest.mock #To mock and monkeypatch stuff.
from UM.Settings.DefinitionContainer import DefinitionContainer
from cura.ReaderWriters.ProfileReader import NoProfileException from cura.ReaderWriters.ProfileReader import NoProfileException
from cura.Settings.ExtruderStack import ExtruderStack #Testing for returning the correct types of stacks. from cura.Settings.ExtruderStack import ExtruderStack #Testing for returning the correct types of stacks.
from cura.Settings.GlobalStack import GlobalStack #Testing for returning the correct types of stacks. from cura.Settings.GlobalStack import GlobalStack #Testing for returning the correct types of stacks.

View file

@ -1,5 +1,4 @@
from unittest.mock import MagicMock, patch from unittest.mock import MagicMock, patch
from UM.Math.AxisAlignedBox import AxisAlignedBox
import pytest import pytest
from UM.Math.Polygon import Polygon from UM.Math.Polygon import Polygon

View file

@ -1,5 +1,5 @@
from unittest.mock import MagicMock, patch from unittest.mock import MagicMock
def createMockedExtruder(extruder_id): def createMockedExtruder(extruder_id):

View file

@ -5,7 +5,6 @@ from cura.UI import PrintInformation
from cura.Settings.MachineManager import MachineManager from cura.Settings.MachineManager import MachineManager
from unittest.mock import MagicMock, patch from unittest.mock import MagicMock, patch
from UM.Application import Application
from UM.MimeTypeDatabase import MimeTypeDatabase, MimeType from UM.MimeTypeDatabase import MimeTypeDatabase, MimeType