aboutsummaryrefslogtreecommitdiffstats
path: root/bsfs/schema/schema.py
diff options
context:
space:
mode:
authorMatthias Baumgartner <dev@igsor.net>2023-01-12 08:44:25 +0100
committerMatthias Baumgartner <dev@igsor.net>2023-01-12 08:44:25 +0100
commit6fd984e694b0a7b749ab947211d792f5b011ee6f (patch)
tree1c64cb2f9070d40e54b8108ac68f6eec07afb2fc /bsfs/schema/schema.py
parent1ffb815f25b9f7db7b946f9db436974a687cf818 (diff)
downloadbsfs-6fd984e694b0a7b749ab947211d792f5b011ee6f.tar.gz
bsfs-6fd984e694b0a7b749ab947211d792f5b011ee6f.tar.bz2
bsfs-6fd984e694b0a7b749ab947211d792f5b011ee6f.zip
renamed get_child to child in schema.types._Type and _Vertex to Vertex in schema.types
Diffstat (limited to 'bsfs/schema/schema.py')
-rw-r--r--bsfs/schema/schema.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bsfs/schema/schema.py b/bsfs/schema/schema.py
index 1c4c807..80cb58a 100644
--- a/bsfs/schema/schema.py
+++ b/bsfs/schema/schema.py
@@ -83,7 +83,7 @@ class Schema():
prange = {pred.range for pred in predicates}
nodes |= {vert for vert in prange if isinstance(vert, types.Node)}
literals |= {vert for vert in prange if isinstance(vert, types.Literal)}
- # NOTE: ROOT_PREDICATE has a _Vertex as range which is neither in nodes nor literals
+ # NOTE: ROOT_PREDICATE has a Vertex as range which is neither in nodes nor literals
# FIXME: with the ROOT_VERTEX missing, the schema is not complete anymore!
# include parents in nodes and literals sets