Removing unused imports

This commit is contained in:
Thomas-Karl Pietrowski 2016-03-15 12:17:59 +01:00
parent 95d9700c0e
commit 5ae63f2de1
4 changed files with 2 additions and 8 deletions

View file

@ -1,4 +1,4 @@
from PyQt5.QtCore import QObject, pyqtSlot, pyqtProperty, QUrl from PyQt5.QtCore import QObject, pyqtSlot, QUrl
from PyQt5.QtGui import QDesktopServices from PyQt5.QtGui import QDesktopServices
from UM.Event import CallFunctionEvent from UM.Event import CallFunctionEvent

View file

@ -5,8 +5,6 @@ from PyQt5.QtCore import QTimer
from UM.Scene.SceneNode import SceneNode from UM.Scene.SceneNode import SceneNode
from UM.Scene.Iterator.BreadthFirstIterator import BreadthFirstIterator from UM.Scene.Iterator.BreadthFirstIterator import BreadthFirstIterator
from UM.Operations.TranslateOperation import TranslateOperation
from UM.Math.Float import Float
from UM.Math.Vector import Vector from UM.Math.Vector import Vector
from UM.Math.AxisAlignedBox import AxisAlignedBox from UM.Math.AxisAlignedBox import AxisAlignedBox
from UM.Application import Application from UM.Application import Application

View file

@ -2,8 +2,6 @@
# Cura is released under the terms of the AGPLv3 or higher. # Cura is released under the terms of the AGPLv3 or higher.
from UM.Operations.Operation import Operation from UM.Operations.Operation import Operation
from UM.Operations.AddSceneNodeOperation import AddSceneNodeOperation
from UM.Operations.TranslateOperation import TranslateOperation
from UM.Operations.GroupedOperation import GroupedOperation from UM.Operations.GroupedOperation import GroupedOperation
## A specialised operation designed specifically to modify the previous operation. ## A specialised operation designed specifically to modify the previous operation.

View file

@ -1,11 +1,9 @@
# Copyright (c) 2015 Ultimaker B.V. # Copyright (c) 2015 Ultimaker B.V.
# Cura is released under the terms of the AGPLv3 or higher. # Cura is released under the terms of the AGPLv3 or higher.
from PyQt5.QtCore import QObject, QDateTime, QTimer, pyqtSignal, pyqtSlot, pyqtProperty from PyQt5.QtCore import QObject, pyqtSignal, pyqtProperty
from UM.Application import Application from UM.Application import Application
from UM.Resources import Resources
from UM.Scene.SceneNode import SceneNode
from UM.Qt.Duration import Duration from UM.Qt.Duration import Duration
import math import math