mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-12 16:39:00 +08:00
Unapply the @override decorator as it doesn't actually work
CL-228
This commit is contained in:
parent
b5b3f47e4d
commit
6dade56758
@ -115,19 +115,15 @@ class NetworkClusterPrinterOutputDevice(NetworkPrinterOutputDevice.NetworkPrinte
|
|||||||
|
|
||||||
## No authentication, so requestAuthentication should do exactly nothing
|
## No authentication, so requestAuthentication should do exactly nothing
|
||||||
@pyqtSlot()
|
@pyqtSlot()
|
||||||
@override(NetworkPrinterOutputDevice)
|
|
||||||
def requestAuthentication(self, message_id = None, action_id = "Retry"):
|
def requestAuthentication(self, message_id = None, action_id = "Retry"):
|
||||||
pass # Cura Connect doesn't do any authorization
|
pass # Cura Connect doesn't do any authorization
|
||||||
|
|
||||||
@override(NetworkPrinterOutputDevice)
|
|
||||||
def setAuthenticationState(self, auth_state):
|
def setAuthenticationState(self, auth_state):
|
||||||
self._authentication_state = NetworkPrinterOutputDevice.AuthState.Authenticated # The printer is always authenticated
|
self._authentication_state = NetworkPrinterOutputDevice.AuthState.Authenticated # The printer is always authenticated
|
||||||
|
|
||||||
@override(NetworkPrinterOutputDevice)
|
|
||||||
def _verifyAuthentication(self):
|
def _verifyAuthentication(self):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
@override(NetworkPrinterOutputDevice)
|
|
||||||
def _checkAuthentication(self):
|
def _checkAuthentication(self):
|
||||||
Logger.log("d", "_checkAuthentication Cura Connect - nothing to be done")
|
Logger.log("d", "_checkAuthentication Cura Connect - nothing to be done")
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user