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
path: root/cura
diff options
context:
space:
mode:
authorJoey de l'Arago <joeydelarago@gmail.com>2022-06-15 18:29:16 +0300
committerGitHub <noreply@github.com>2022-06-15 18:29:16 +0300
commitb4152d29d6bd08f67037c22d23c915bd2d29629e (patch)
tree8ab6a022b63545c5b59f7b4af97771fd44130d46 /cura
parent87afb117d0f7359d6b6f1f26d65e96513dd68b73 (diff)
Update cura/Machines/Models/ActiveIntentQualitiesModel.py
Co-authored-by: Casper Lamboo <c.lamboo@ultimaker.com>
Diffstat (limited to 'cura')
-rw-r--r--cura/Machines/Models/ActiveIntentQualitiesModel.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cura/Machines/Models/ActiveIntentQualitiesModel.py b/cura/Machines/Models/ActiveIntentQualitiesModel.py
index 0c038c9ffa..f25391fcad 100644
--- a/cura/Machines/Models/ActiveIntentQualitiesModel.py
+++ b/cura/Machines/Models/ActiveIntentQualitiesModel.py
@@ -84,7 +84,7 @@ class ActiveIntentQualitiesModel(ListModel):
container_tree = ContainerTree.getInstance()
machine_node = container_tree.machines[global_stack.definition.getId()]
- nodes = set() # type: Set[MaterialNode]
+ nodes: Set[MaterialNode] = set()
for extruder in global_stack.extruderList:
active_variant_name = extruder.variant.getMetaDataEntry("name")