Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArjen Hiemstra <ahiemstra@heimr.nl>2017-04-24 14:11:04 +0300
committerArjen Hiemstra <ahiemstra@heimr.nl>2017-04-24 14:11:04 +0300
commit49bdb78219a4f1655c07f45c4acd87d8eb938f7a (patch)
tree7b827579329df379ff17a6ba572dfbddd270ab10 /cura/CuraActions.py
parent3d5e535b6985ce77aa61fec476e0b545a6dd0f99 (diff)
Use cura. for imports instead of relative imports`
Matches the style of the rest of the file.
Diffstat (limited to 'cura/CuraActions.py')
-rw-r--r--cura/CuraActions.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/cura/CuraActions.py b/cura/CuraActions.py
index 0a1657e512..6c2aea5de1 100644
--- a/cura/CuraActions.py
+++ b/cura/CuraActions.py
@@ -13,9 +13,8 @@ from UM.Operations.GroupedOperation import GroupedOperation
from UM.Operations.RemoveSceneNodeOperation import RemoveSceneNodeOperation
from UM.Operations.SetTransformOperation import SetTransformOperation
-from .SetParentOperation import SetParentOperation
-from .MultiplyObjectsJob import MultiplyObjectsJob
-
+from cura.SetParentOperation import SetParentOperation
+from cura.MultiplyObjectsJob import MultiplyObjectsJob
from cura.Settings.SetObjectExtruderOperation import SetObjectExtruderOperation
class CuraActions(QObject):