From 16c5fdd798a087fcfdee069c6c21c83f3376c61d Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Thu, 6 May 2021 16:27:09 +0200 Subject: [PATCH] Code style: Spaces around binary operators Contrbutes to issue CURA-8224. --- plugins/UM3NetworkPrinting/src/Network/SendMaterialJob.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/UM3NetworkPrinting/src/Network/SendMaterialJob.py b/plugins/UM3NetworkPrinting/src/Network/SendMaterialJob.py index 4607f5206e..96a2b78e8f 100644 --- a/plugins/UM3NetworkPrinting/src/Network/SendMaterialJob.py +++ b/plugins/UM3NetworkPrinting/src/Network/SendMaterialJob.py @@ -30,7 +30,7 @@ class SendMaterialJob(Job): super().__init__() self.device = device # type: LocalClusterOutputDevice - self._send_material_thread = threading.Thread(target=self._sendMissingMaterials) + self._send_material_thread = threading.Thread(target = self._sendMissingMaterials) self._send_material_thread.setDaemon(True) self._remote_materials = {} # type: Dict[str, ClusterMaterial]