[core] fix flake8 error

remove type annotations
This commit is contained in:
Yann Lanthony 2019-01-30 09:36:02 +01:00
parent 75cb5cb779
commit 905ed48cf9

View file

@ -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()