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:
authorfieldOfView <aldo@fieldofview.com>2016-11-09 18:20:34 +0300
committerfieldOfView <aldo@fieldofview.com>2016-11-09 18:20:34 +0300
commit236723fc8dd49499189ad14de028a59810c6b5db (patch)
treead150b2c49cc11b53acd66e43a7c06fb17ab8a03 /cura/PrinterOutputDevice.py
parentfdbbda07be799dd78eb89dee47e9a25518a09293 (diff)
Remove unused required argument on _startCamera and _stopCamera
(they were probably there due to a copy/paste error, see _setJobState) CURA-2411
Diffstat (limited to 'cura/PrinterOutputDevice.py')
-rw-r--r--cura/PrinterOutputDevice.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/cura/PrinterOutputDevice.py b/cura/PrinterOutputDevice.py
index f90566c30b..6eae259e1e 100644
--- a/cura/PrinterOutputDevice.py
+++ b/cura/PrinterOutputDevice.py
@@ -138,14 +138,14 @@ class PrinterOutputDevice(QObject, OutputDevice):
def startCamera(self):
self._startCamera()
- def _startCamera(self, job_state):
+ def _startCamera(self):
Logger.log("w", "_startCamera is not implemented by this output device")
@pyqtSlot()
def stopCamera(self):
self._stopCamera()
- def _stopCamera(self, job_state):
+ def _stopCamera(self):
Logger.log("w", "_stopCamera is not implemented by this output device")
@pyqtProperty(str, notify = jobNameChanged)