From 61f7b6aa689cb925d6148ed967cb5762986e8f09 Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Mon, 8 May 2017 10:42:52 +0200 Subject: [PATCH] Add spaces around binary operator According to our code style. Contributes to issue CURA-3756. --- plugins/3MFReader/ThreeMFWorkspaceReader.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/3MFReader/ThreeMFWorkspaceReader.py b/plugins/3MFReader/ThreeMFWorkspaceReader.py index 6551648fae..9ec711697e 100644 --- a/plugins/3MFReader/ThreeMFWorkspaceReader.py +++ b/plugins/3MFReader/ThreeMFWorkspaceReader.py @@ -191,7 +191,7 @@ class ThreeMFWorkspaceReader(WorkspaceReader): serialized = archive.open(container_stack_file).read().decode("utf-8") if machine_name == "": machine_name = self._getMachineNameFromSerializedStack(serialized) - stacks = self._container_registry.findContainerStacks(id=container_id) + stacks = self._container_registry.findContainerStacks(id = container_id) if stacks: # Check if there are any changes at all in any of the container stacks. id_list = self._getContainerIdListFromSerialized(serialized)