Remove commented out properties

CURA-8463
This commit is contained in:
Jaime van Kessel 2022-08-31 10:33:46 +02:00
parent 5ff07b00d0
commit b9e8bca012
No known key found for this signature in database
GPG key ID: C85F7A3AF1BAA7C4

View file

@ -22,13 +22,7 @@ class AbstractCloudOutputDevice(UltimakerNetworkedPrinterOutputDevice):
def __init__(self, api_client: CloudApiClient, printer_type: str, parent: QObject = None) -> None: def __init__(self, api_client: CloudApiClient, printer_type: str, parent: QObject = None) -> None:
self._api = api_client self._api = api_client
properties = { properties = {b"printer_type": printer_type.encode()}
#b"address": cluster.host_internal_ip.encode() if cluster.host_internal_ip else b"",
# b"name": cluster.friendly_name.encode() if cluster.friendly_name else b"",
##b"firmware_version": cluster.host_version.encode() if cluster.host_version else b"",
b"printer_type": printer_type.encode()
#b"cluster_size": str(cluster.printer_count).encode() if cluster.printer_count else b"1"
}
super().__init__( super().__init__(
device_id=f"ABSTRACT_{printer_type}", device_id=f"ABSTRACT_{printer_type}",
address="", address="",