Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCasper Lamboo <c.lamboo@ultimaker.com>2022-09-12 15:19:08 +0300
committerGitHub <noreply@github.com>2022-09-12 15:19:08 +0300
commit0f36f833731838d3716398251271450c62b6b781 (patch)
tree6821814dbd381f1ac6a34b0ab1b22bc08a8a571a /cura/Machines
parentb7611da95e7cc77b44bfb728a213f6868704be4a (diff)
Simplify list notation
CURA-9278
Diffstat (limited to 'cura/Machines')
-rw-r--r--cura/Machines/Models/CompatibleMachineModel.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cura/Machines/Models/CompatibleMachineModel.py b/cura/Machines/Models/CompatibleMachineModel.py
index fbccf92fc3..c4143be228 100644
--- a/cura/Machines/Models/CompatibleMachineModel.py
+++ b/cura/Machines/Models/CompatibleMachineModel.py
@@ -79,5 +79,5 @@ class CompatibleMachineModel(ListModel):
self.appendItem({
"name": printer.name,
"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()
})