예제 #1
0
파일: hooks.py 프로젝트: NCI-GDC/psqlgraph
def is_psqlgraph_entity(target):
    """Only attempt to track history on Nodes and Edges

    """
    return target.__class__ in (
        Node.__subclasses__()+Edge.__subclasses__())
예제 #2
0
파일: hooks.py 프로젝트: huarngpa/psqlgraph
def is_psqlgraph_entity(target):
    """Only attempt to track history on Nodes and Edges

    """
    return target.__class__ in (Node.__subclasses__() + Edge.__subclasses__())