mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-24 23:23:57 -06:00
Fix code style
CURA-6840
This commit is contained in:
parent
4579b06f6d
commit
1967dd8404
3 changed files with 14 additions and 10 deletions
|
@ -7,7 +7,7 @@ import cura.CuraApplication # Imported this way to prevent circular dependencie
|
|||
from UM.Logger import Logger
|
||||
from UM.Qt.ListModel import ListModel
|
||||
from cura.Machines.ContainerTree import ContainerTree
|
||||
from cura.Machines.Models.MachineModelUtils import fetch_layer_height
|
||||
from cura.Machines.Models.MachineModelUtils import fetchLayerHeight
|
||||
|
||||
|
||||
#
|
||||
|
@ -87,7 +87,7 @@ class QualityProfilesDropDownMenuModel(ListModel):
|
|||
|
||||
item_list = []
|
||||
for quality_group in quality_group_dict.values():
|
||||
layer_height = fetch_layer_height(quality_group)
|
||||
layer_height = fetchLayerHeight(quality_group)
|
||||
|
||||
item = {"name": quality_group.name,
|
||||
"quality_type": quality_group.quality_type,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue