mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-09 07:56:22 -06:00
Remove commented out properties
CURA-8463
This commit is contained in:
parent
5ff07b00d0
commit
b9e8bca012
1 changed files with 1 additions and 7 deletions
|
@ -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="",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue