mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-04-29 10:17:27 +02:00
[core] fix flake8 error
remove type annotations
This commit is contained in:
parent
75cb5cb779
commit
905ed48cf9
1 changed files with 2 additions and 2 deletions
|
@ -337,8 +337,8 @@ class BaseNode(BaseObject):
|
|||
self.packageName = self.packageVersion = ""
|
||||
self._internalFolder = ""
|
||||
|
||||
self._name = None # type: str
|
||||
self.graph = None # type: Graph
|
||||
self._name = None
|
||||
self.graph = None
|
||||
self.dirty = True # whether this node's outputs must be re-evaluated on next Graph update
|
||||
self._chunks = ListModel(parent=self)
|
||||
self._uids = dict()
|
||||
|
|
Loading…
Add table
Reference in a new issue