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
This commit is contained in:
Kostas Karmas 2020-04-03 11:20:09 +02:00
parent 8eb48672e1
commit 4495cea8a4

View File

@ -1580,7 +1580,7 @@ class CuraApplication(QtApplication):
fileLoaded = pyqtSignal(str) fileLoaded = pyqtSignal(str)
fileCompleted = 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 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 scene from its source file. The function gets all the nodes that exist in the file through the job result, and