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
|
@ -1,3 +1,6 @@
|
|||
# Copyright (c) 2019 Ultimaker B.V.
|
||||
# Cura is released under the terms of the LGPLv3 or higher.
|
||||
|
||||
from typing import TYPE_CHECKING
|
||||
|
||||
from UM.Settings.SettingFunction import SettingFunction
|
||||
|
@ -7,7 +10,8 @@ if TYPE_CHECKING:
|
|||
|
||||
layer_height_unit = ""
|
||||
|
||||
def fetch_layer_height(quality_group: "QualityGroup") -> float:
|
||||
|
||||
def fetchLayerHeight(quality_group: "QualityGroup") -> float:
|
||||
from cura.CuraApplication import CuraApplication
|
||||
global_stack = CuraApplication.getInstance().getMachineManager().activeMachine
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue