mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-23 14:44:13 -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
|
@ -168,7 +168,7 @@ class MachineNode(ContainerNode):
|
|||
|
||||
return self.global_qualities.get(self.preferred_quality_type, next(iter(self.global_qualities.values())))
|
||||
|
||||
def is_excluded_material(self, material: MaterialNode) -> bool:
|
||||
def isExcludedMaterial(self, material: MaterialNode) -> bool:
|
||||
"""Returns whether the material should be excluded from the list of materials."""
|
||||
for exclude_material in self.exclude_materials:
|
||||
if exclude_material in material["id"]:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue