refact: move graph libs to own directory

This commit is contained in:
Bertrand Benjamin 2024-10-28 05:38:26 +01:00
parent c347deee85
commit aa1ead5435
5 changed files with 5 additions and 2 deletions

0
plesna/graph/__init__.py Normal file
View File

View File

@ -31,3 +31,6 @@ class GraphSet:
@property
def node_sets(self):
return self._node_sets
def is_valid_dag(self):
pass

View File

@ -1,6 +1,6 @@
import pytest
from plesna.graph import Edge, Graph, Node
from plesna.graph.graph import Edge, Graph, Node
def test_append_nodess():

View File

@ -1,4 +1,4 @@
from plesna.graph_set import EdgeOnSet, GraphSet, Node
from plesna.graph.graph_set import EdgeOnSet, GraphSet, Node
def test_init():