Function name changed to make it a bit generic

CURA-11138
This commit is contained in:
saumya.jain 2023-10-31 11:48:44 +01:00
parent 1a139f44bc
commit ce132e4c3f
3 changed files with 8 additions and 8 deletions

View file

@ -35,7 +35,7 @@ class CloudClusterResponse(BaseModel):
self.host_version = host_version
self.host_internal_ip = host_internal_ip
self.friendly_name = friendly_name
self.printer_type = NetworkedPrinterOutputDevice.getPrinterTypeIfMakerBot(printer_type)
self.printer_type = NetworkedPrinterOutputDevice.applyPrinterTypeMapping(printer_type)
self.printer_count = printer_count
self.capabilities = capabilities if capabilities is not None else []
super().__init__(**kwargs)