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
diff options
context:
space:
mode:
authorCasper Lamboo <c.lamboo@ultimaker.com>2022-01-14 11:07:41 +0300
committerGitHub <noreply@github.com>2022-01-14 11:07:41 +0300
commit41f1029dc0691fb9631ca7df5ac2e4146c6fd302 (patch)
tree399727c825a3d9cdefbb30c38ab2f044c85f0f80 /cura/BuildVolume.py
parent732aefedbb3df132717491ff8f2349be0bc4ba7e (diff)
Use updated python type notation
Diffstat (limited to 'cura/BuildVolume.py')
-rwxr-xr-xcura/BuildVolume.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cura/BuildVolume.py b/cura/BuildVolume.py
index 8cbe535ea7..64dc4faceb 100755
--- a/cura/BuildVolume.py
+++ b/cura/BuildVolume.py
@@ -848,7 +848,7 @@ class BuildVolume(SceneNode):
"""
result = {}
- skirt_brim_extruder = None #type: ExtruderStack
+ skirt_brim_extruder: ExtruderStack = None
for extruder in used_extruders:
if int(extruder.getProperty("extruder_nr", "value")) == int(self._global_container_stack.getProperty("skirt_brim_extruder_nr", "value")):
skirt_brim_extruder = extruder