From b9e8bca01298ecc7f1708ea811f2eb6eb929895e Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Wed, 31 Aug 2022 10:33:46 +0200 Subject: [PATCH] Remove commented out properties CURA-8463 --- .../src/Cloud/AbstractCloudOutputDevice.py | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py b/plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py index bfda093d2e..8448c095c8 100644 --- a/plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py +++ b/plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py @@ -22,13 +22,7 @@ class AbstractCloudOutputDevice(UltimakerNetworkedPrinterOutputDevice): def __init__(self, api_client: CloudApiClient, printer_type: str, parent: QObject = None) -> None: self._api = api_client - properties = { - #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" - } + properties = {b"printer_type": printer_type.encode()} super().__init__( device_id=f"ABSTRACT_{printer_type}", address="",