mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-23 14:44:13 -06:00
Simplify list notation
CURA-9278
This commit is contained in:
parent
b7611da95e
commit
0f36f83373
1 changed files with 1 additions and 1 deletions
|
@ -79,5 +79,5 @@ class CompatibleMachineModel(ListModel):
|
||||||
self.appendItem({
|
self.appendItem({
|
||||||
"name": printer.name,
|
"name": printer.name,
|
||||||
"unique_id": printer.name, # <- Can assume the cloud doesn't have duplicate names?
|
"unique_id": printer.name, # <- Can assume the cloud doesn't have duplicate names?
|
||||||
"extruders": [extruder for extruder in extruder_configs.values()]
|
"extruders": extruder_configs.values()
|
||||||
})
|
})
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue