Fix "missing key op" RDFGraph OWL serialization (#8276)

Replace this comment with:
- Description: Fix "missing key op" error in RDFGraph OWL Serialization
  - Issue: #8263
  - Dependencies: None
  - Tag maintainer: @baskaryan
pull/8275/head^2
Caitlin2694 1 year ago committed by GitHub
parent 862e9aed66
commit b9db3dd09b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -261,8 +261,8 @@ class RdfGraph:
self.schema = _rdf_s_schema(clss, rels)
elif self.standard == "owl":
clss = self.query(cls_query_owl)
ops = self.query(cls_query_owl)
dps = self.query(cls_query_owl)
ops = self.query(op_query_owl)
dps = self.query(dp_query_owl)
self.schema = (
f"In the following, each IRI is followed by the local name and "
f"optionally its description in parentheses. \n"

Loading…
Cancel
Save