Code style: Spaces around binary operators

Contrbutes to issue CURA-8224.
This commit is contained in:
Ghostkeeper 2021-05-06 16:27:09 +02:00
parent b2b10f693d
commit 16c5fdd798
No known key found for this signature in database
GPG key ID: D2A8871EE34EC59A

View file

@ -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]