Browse Source

Use cura. for imports instead of relative imports`

Matches the style of the rest of the file.
Arjen Hiemstra 7 years ago
parent
commit
49bdb78219
1 changed files with 2 additions and 3 deletions
  1. 2 3
      cura/CuraActions.py

+ 2 - 3
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):