[core] split graph.py into separate modules

core.graph is now splitted into: 
  * graph.py
  * node.py
  * attribute.py
This commit is contained in:
Yann Lanthony 2018-06-21 15:24:50 +02:00
parent f4b3364275
commit 1f675a0e42
9 changed files with 1117 additions and 1094 deletions

View file

@ -4,7 +4,9 @@ from contextlib import contextmanager
from PySide2.QtWidgets import QUndoCommand, QUndoStack
from PySide2.QtCore import Property, Signal
from meshroom.core.graph import Node, ListAttribute, Graph, GraphModification, Attribute
from meshroom.core.attribute import ListAttribute, Attribute
from meshroom.core.graph import GraphModification
class UndoCommand(QUndoCommand):