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:16 +0300
committerArjen Hiemstra <ahiemstra@heimr.nl>2017-04-24 14:11:16 +0300
commite571b8aeac6349131b9c9b8420b44de5a975e693 (patch)
tree8d36a2a67a679a5044fc201c96d2827ae076481e /cura/CuraActions.py
parent49bdb78219a4f1655c07f45c4acd87d8eb938f7a (diff)
Remove superfluous return statement
Diffstat (limited to 'cura/CuraActions.py')
-rw-r--r--cura/CuraActions.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/cura/CuraActions.py b/cura/CuraActions.py
index 6c2aea5de1..79c7679120 100644
--- a/cura/CuraActions.py
+++ b/cura/CuraActions.py
@@ -54,7 +54,6 @@ class CuraActions(QObject):
def multiplySelection(self, count: int) -> None:
job = MultiplyObjectsJob(Selection.getAllSelectedObjects(), count, 8)
job.start()
- return
## Delete all selected objects.
@pyqtSlot()