From 6dade567584156cc3e1f5520d202d2fd62275393 Mon Sep 17 00:00:00 2001 From: Simon Edwards Date: Mon, 2 Oct 2017 17:12:15 +0200 Subject: [PATCH] Unapply the @override decorator as it doesn't actually work CL-228 --- .../UM3NetworkPrinting/NetworkClusterPrinterOutputDevice.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/plugins/UM3NetworkPrinting/NetworkClusterPrinterOutputDevice.py b/plugins/UM3NetworkPrinting/NetworkClusterPrinterOutputDevice.py index dbc9f12974..c514a4b0df 100644 --- a/plugins/UM3NetworkPrinting/NetworkClusterPrinterOutputDevice.py +++ b/plugins/UM3NetworkPrinting/NetworkClusterPrinterOutputDevice.py @@ -115,19 +115,15 @@ class NetworkClusterPrinterOutputDevice(NetworkPrinterOutputDevice.NetworkPrinte ## No authentication, so requestAuthentication should do exactly nothing @pyqtSlot() - @override(NetworkPrinterOutputDevice) def requestAuthentication(self, message_id = None, action_id = "Retry"): pass # Cura Connect doesn't do any authorization - @override(NetworkPrinterOutputDevice) def setAuthenticationState(self, auth_state): self._authentication_state = NetworkPrinterOutputDevice.AuthState.Authenticated # The printer is always authenticated - @override(NetworkPrinterOutputDevice) def _verifyAuthentication(self): pass - @override(NetworkPrinterOutputDevice) def _checkAuthentication(self): Logger.log("d", "_checkAuthentication Cura Connect - nothing to be done")