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:28:13 +0300
committerGitHub <noreply@github.com>2022-06-15 18:28:13 +0300
commit760976159c4d86b0fa4eb8dda09489818c377f61 (patch)
tree89b4c4f4406f9f9ce1ada2c79e41906109d4ea86 /cura
parentcaa0c255aae0288e2484b52869ffc30ac80bcb66 (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 bd2f5cf771..f8f88aa7a6 100644
--- a/cura/Machines/Models/ActiveIntentQualitiesModel.py
+++ b/cura/Machines/Models/ActiveIntentQualitiesModel.py
@@ -64,7 +64,7 @@ class ActiveIntentQualitiesModel(ListModel):
material_nodes = self._getActiveMaterials()
- added_quality_type_set = set() # type: Set[str]
+ added_quality_type_set: Set[str] = set()
for material_node in material_nodes:
intents = self._getIntentsForMaterial(material_node, quality_groups)
for intent in intents: