From 1e898ff9305a6bdfa702200d813d6b86caa03974 Mon Sep 17 00:00:00 2001 From: joeydelarago Date: Wed, 24 Aug 2022 10:23:35 +0200 Subject: [PATCH] Remove redundant comment CURA-9514 --- cura/Machines/Models/MachineListModel.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/cura/Machines/Models/MachineListModel.py b/cura/Machines/Models/MachineListModel.py index 5a7dc77673..716238efc4 100644 --- a/cura/Machines/Models/MachineListModel.py +++ b/cura/Machines/Models/MachineListModel.py @@ -76,10 +76,6 @@ class MachineListModel(ListModel): # Remove this machine from the other stack list other_machine_stacks.remove(stack) - - # Filtering must be done like this because searching with findContainerStacks(is_online = "True") does not return - # stacks that don't have is_online in their metadata. We still want to show these printers. - # offline_machine_stacks = [stack for stack in offline_machine_stacks if parseBool(stack.getMetaDataEntry("is_online", False))] for stack in other_machine_stacks: self.addItem(stack)