diff --git a/bricksrc/relationships.py b/bricksrc/relationships.py index 67bc0211..448bc6e5 100644 --- a/bricksrc/relationships.py +++ b/bricksrc/relationships.py @@ -6,10 +6,6 @@ Defining Brick relationships """ relationships = { - "connectedTo": { - A: [OWL.ObjectProperty, OWL.SymmetricProperty, OWL.IrreflexiveProperty], - RDFS.label: Literal("Connected To", lang="en"), - }, "isReplacedBy": { A: [OWL.ObjectProperty, OWL.AsymmetricProperty, OWL.IrreflexiveProperty], RDFS.label: Literal("Is replaced by", lang="en"), @@ -238,4 +234,8 @@ if row["datatype"]: relationships[row["path"]][A] = [OWL.DatatypeProperty] if row["nodeKind"]: - relationships[row["path"]][A] = [OWL.ObjectProperty, OWL.AsymmetricProperty, OWL.IrreflexiveProperty] + relationships[row["path"]][A] = [ + OWL.ObjectProperty, + OWL.AsymmetricProperty, + OWL.IrreflexiveProperty, + ]