aboutsummaryrefslogtreecommitdiffstats
path: root/bsfs/graph/graph.py
diff options
context:
space:
mode:
Diffstat (limited to 'bsfs/graph/graph.py')
-rw-r--r--bsfs/graph/graph.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bsfs/graph/graph.py b/bsfs/graph/graph.py
index 10e5904..51fe75d 100644
--- a/bsfs/graph/graph.py
+++ b/bsfs/graph/graph.py
@@ -111,7 +111,7 @@ class Graph():
type_ = self.schema.node(node_type)
return _nodes.Nodes(self._backend, self._user, type_, {guid})
- def get(self, node_type: URI, subject: ast.filter.FilterExpression) -> Nodes:
+ def get(self, node_type: URI, subject: ast.filter.FilterExpression) -> _nodes.Nodes:
"""Return a `Nodes` instance over all nodes of type *node_type* that match the *subject* query."""
raise NotImplementedError()