mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-05-22 13:36:31 +02:00
[graph] fix call to property nodeType
This commit is contained in:
parent
e42e04fd9d
commit
05be8932ca
1 changed files with 2 additions and 1 deletions
|
@ -335,7 +335,8 @@ class Node(BaseObject):
|
|||
self._initFromDesc()
|
||||
for k, v in kwargs.items():
|
||||
self.attribute(k).value = v
|
||||
self.status = StatusData(self.name, self.nodeType())
|
||||
|
||||
self.status = StatusData(self.name, self.nodeType)
|
||||
self.statistics = stats.Statistics()
|
||||
self._subprocess = None
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue