Remove hacky code that is now not needed anymore

This commit is contained in:
ChrisTerBeke 2019-05-14 21:13:29 +02:00
parent 56c1da2580
commit b1920b05e9
No known key found for this signature in database
GPG key ID: A49F1AB9D7E0C263
2 changed files with 1 additions and 22 deletions

View file

@ -17,7 +17,7 @@ class CloudClusterResponse(BaseCloudModel):
# \param host_version: The firmware version of the cluster host. This is where the Stardust client is running on.
# \param host_internal_ip: The internal IP address of the host printer.
# \param friendly_name: The human readable name of the host printer.
# \param printer_type: The machine type of the host printer.
# \param printer_type: The machine type of the host printer, for example "Ultimaker 3".
def __init__(self, cluster_id: str, host_guid: str, host_name: str, is_online: bool, status: str,
host_internal_ip: Optional[str] = None, host_version: Optional[str] = None,
friendly_name: Optional[str] = None, printer_type: str = "Ultimaker 3", **kwargs) -> None: