From f677be14c2bb8c746b777ecf6699e2534dd15141 Mon Sep 17 00:00:00 2001 From: Kostas Karmas Date: Wed, 20 May 2020 15:10:04 +0200 Subject: [PATCH] Fix spacing CURA-7436 --- cura/Machines/Models/GlobalStacksModel.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cura/Machines/Models/GlobalStacksModel.py b/cura/Machines/Models/GlobalStacksModel.py index c3ef7ab519..201fbacd30 100644 --- a/cura/Machines/Models/GlobalStacksModel.py +++ b/cura/Machines/Models/GlobalStacksModel.py @@ -21,7 +21,7 @@ class GlobalStacksModel(ListModel): DiscoverySourceRole = Qt.UserRole + 6 # For separating local and remote printers in the machine management page RemovalWarningRole = Qt.UserRole + 7 - def __init__(self, parent=None) -> None: + def __init__(self, parent = None) -> None: super().__init__(parent) self._catalog = i18nCatalog("cura") @@ -55,7 +55,7 @@ class GlobalStacksModel(ListModel): def _update(self) -> None: items = [] - container_stacks = CuraContainerRegistry.getInstance().findContainerStacks(type="machine") + container_stacks = CuraContainerRegistry.getInstance().findContainerStacks(type = "machine") for container_stack in container_stacks: has_remote_connection = False