diff options
author | Matthias Baumgartner <dev@igsor.net> | 2022-12-19 13:40:02 +0100 |
---|---|---|
committer | Matthias Baumgartner <dev@igsor.net> | 2022-12-19 13:40:02 +0100 |
commit | a0f2308adcb226d28de3355bc7115a6d9b669462 (patch) | |
tree | f3d695a7a04e4fc2f40ae5130e120dee87d038ef /bsfs/graph/graph.py | |
parent | 791918039979d0743fd2ea4b9a5e74593ff96fd0 (diff) | |
download | bsfs-a0f2308adcb226d28de3355bc7115a6d9b669462.tar.gz bsfs-a0f2308adcb226d28de3355bc7115a6d9b669462.tar.bz2 bsfs-a0f2308adcb226d28de3355bc7115a6d9b669462.zip |
import fixes
Diffstat (limited to 'bsfs/graph/graph.py')
-rw-r--r-- | bsfs/graph/graph.py | 2 |
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() |