mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-23 22:54:01 -06:00
Use camelCase for python function definition
CURA-10599 Co-authored-by: Jaime van Kessel <nallath@gmail.com>
This commit is contained in:
parent
731a2d10ed
commit
f73154a2c5
3 changed files with 4 additions and 4 deletions
|
@ -60,7 +60,7 @@ class VariantNode(ContainerNode):
|
|||
materials = list(materials_per_base_file.values())
|
||||
|
||||
# Filter materials based on the exclude_materials property.
|
||||
filtered_materials = [material for material in materials if not self.machine.is_excluded_material(material)]
|
||||
filtered_materials = [material for material in materials if not self.machine.isExcludedMaterial(material)]
|
||||
|
||||
for material in filtered_materials:
|
||||
base_file = material["base_file"]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue