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:
authorJaime van Kessel <nallath@gmail.com>2016-06-22 14:10:10 +0300
committerJaime van Kessel <nallath@gmail.com>2016-06-22 14:10:10 +0300
commitdcafb7d83a87c683b2c1d3da10e89ddfef31b0b6 (patch)
treec534ae8f999759a41932bc26e325b1197f186c82 /cura/MachineAction.py
parente1828a768967496789223d4eb8b15e75dea1ab7a (diff)
Removed Execute, as it's no longer used
CURA-1385
Diffstat (limited to 'cura/MachineAction.py')
-rw-r--r--cura/MachineAction.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/cura/MachineAction.py b/cura/MachineAction.py
index 64d78ddd54..6a4df0fce1 100644
--- a/cura/MachineAction.py
+++ b/cura/MachineAction.py
@@ -39,10 +39,6 @@ class MachineAction(QObject, PluginObject):
self._label = label
self.labelChanged.emit()
- @pyqtSlot()
- def execute(self):
- self._execute()
-
## Reset the action to it's default state.
# This should not be re-implemented by child classes, instead re-implement _reset.
# /sa _reset
@@ -62,9 +58,6 @@ class MachineAction(QObject, PluginObject):
self._reset()
self.onFinished.emit()
- def _execute(self):
- raise NotImplementedError("Execute() must be implemented")
-
@pyqtProperty(bool, notify = onFinished)
def finished(self):
return self._finished