mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-12-11 16:00:47 -07:00
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:
parent
8eb48672e1
commit
4495cea8a4
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue