mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-05 21:13:58 -06:00
fix typing
This commit is contained in:
parent
e87f3d7ca9
commit
e1bc5d0f74
1 changed files with 2 additions and 2 deletions
|
@ -234,8 +234,8 @@ class StartSliceJob(Job):
|
||||||
|
|
||||||
if has_model_with_disabled_extruders:
|
if has_model_with_disabled_extruders:
|
||||||
self.setResult(StartJobResult.ObjectsWithDisabledExtruder)
|
self.setResult(StartJobResult.ObjectsWithDisabledExtruder)
|
||||||
associated_disabled_extruders = [str(c) for c in sorted([int(p) + 1 for p in associated_disabled_extruders])]
|
associated_disabled_extruders_message = [str(c) for c in sorted([int(p) + 1 for p in associated_disabled_extruders])]
|
||||||
self.setMessage(", ".join(associated_disabled_extruders))
|
self.setMessage(", ".join(associated_disabled_extruders_message))
|
||||||
return
|
return
|
||||||
|
|
||||||
# There are cases when there is nothing to slice. This can happen due to one at a time slicing not being
|
# There are cases when there is nothing to slice. This can happen due to one at a time slicing not being
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue