From 4495cea8a4a29695af595c14eb5e5f2a2a2829f4 Mon Sep 17 00:00:00 2001 From: Kostas Karmas Date: Fri, 3 Apr 2020 11:20:09 +0200 Subject: [PATCH] Remove type of job to avoid type error If the type of the job is mentioned, the CI/CD system complains about reading the "private" variable _node of the job. CURA-7333 --- cura/CuraApplication.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cura/CuraApplication.py b/cura/CuraApplication.py index cc92b1d914..e6eb999e7a 100755 --- a/cura/CuraApplication.py +++ b/cura/CuraApplication.py @@ -1580,7 +1580,7 @@ class CuraApplication(QtApplication): fileLoaded = pyqtSignal(str) fileCompleted = pyqtSignal(str) - def _reloadMeshFinished(self, job: ReadMeshJob) -> None: + def _reloadMeshFinished(self, job) -> None: """ Function called whenever a ReadMeshJob finishes in the background. It reloads a specific node object in the scene from its source file. The function gets all the nodes that exist in the file through the job result, and