Passed
Push — main ( dd4dc2...24a3de )
by Eran
01:49
created

graphinate.model()   A

Complexity

Conditions 1

Size

Total Lines 10
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 2
nop 1
dl 0
loc 10
rs 10
c 0
b 0
f 0
1
from graphinate import builders
2
from graphinate.builders import GraphType, build
3
from graphinate.materializers import materialize, plot
4
from graphinate.modeling import UNIVERSE_NODE, GraphModel, model
5
from graphinate.server import graphql
6
7
__all__ = (
8
    'build',
9
    'builders',
10
    'GraphModel',
11
    'graphql',
12
    'GraphType',
13
    'materialize',
14
    'model',
15
    'plot',
16
    'UNIVERSE_NODE'
17
)
18