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.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/bsfs/graph/graph.py b/bsfs/graph/graph.py
index 06271f6..d5e1b88 100644
--- a/bsfs/graph/graph.py
+++ b/bsfs/graph/graph.py
@@ -13,7 +13,7 @@ from bsfs.triple_store import TripleStoreBase
from bsfs.utils import URI, typename
# inner-module imports
-from . import nodes
+from . import nodes as _nodes
# exports
__all__: typing.Sequence[str] = (
@@ -55,11 +55,11 @@ class Graph():
"""Return the store's local schema."""
return self.__backend.schema
- def nodes(self, node_type: URI, guids: typing.Iterable[URI]) -> nodes.Nodes:
"""
+ def nodes(self, node_type: URI, guids: typing.Iterable[URI]) -> _nodes.Nodes:
"""
node_type = self.schema.node(node_type)
# NOTE: Nodes constructor materializes guids.
- return nodes.Nodes(self.__backend, self.__user, node_type, guids)
+ return _nodes.Nodes(self._backend, self._user, type_, guids)
## EOF ##