mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-06 22:47:29 -06:00
Remove print statements
CURA-9424
This commit is contained in:
parent
dd510a5dfc
commit
1d1800e440
1 changed files with 0 additions and 2 deletions
|
@ -732,7 +732,6 @@ class ThreeMFWorkspaceReader(WorkspaceReader):
|
||||||
application.expandedCategoriesChanged.emit() # Notify the GUI of the change
|
application.expandedCategoriesChanged.emit() # Notify the GUI of the change
|
||||||
|
|
||||||
# If there are no machines of the same type, create a new machine.
|
# If there are no machines of the same type, create a new machine.
|
||||||
print(self._resolve_strategies)
|
|
||||||
if self._resolve_strategies["machine"] != "override" or self._dialog.updatableMachinesModel.count == 0:
|
if self._resolve_strategies["machine"] != "override" or self._dialog.updatableMachinesModel.count == 0:
|
||||||
# We need to create a new machine
|
# We need to create a new machine
|
||||||
machine_name = self._container_registry.uniqueName(self._machine_info.name)
|
machine_name = self._container_registry.uniqueName(self._machine_info.name)
|
||||||
|
@ -743,7 +742,6 @@ class ThreeMFWorkspaceReader(WorkspaceReader):
|
||||||
# the other extruders.
|
# the other extruders.
|
||||||
machine_extruder_count = self._getMachineExtruderCount() # type: Optional[int]
|
machine_extruder_count = self._getMachineExtruderCount() # type: Optional[int]
|
||||||
global_stack = CuraStackBuilder.createMachine(machine_name, self._machine_info.definition_id, machine_extruder_count)
|
global_stack = CuraStackBuilder.createMachine(machine_name, self._machine_info.definition_id, machine_extruder_count)
|
||||||
print(f"Created Global Stack: {global_stack}")
|
|
||||||
if global_stack: # Only switch if creating the machine was successful.
|
if global_stack: # Only switch if creating the machine was successful.
|
||||||
extruder_stack_dict = {str(position): extruder for position, extruder in enumerate(global_stack.extruderList)}
|
extruder_stack_dict = {str(position): extruder for position, extruder in enumerate(global_stack.extruderList)}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue