mirror of
https://github.com/hwchase17/langchain.git
synced 2025-06-26 08:33:49 +00:00
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
This commit is contained in:
parent
862e9aed66
commit
b9db3dd09b
@ -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…
Reference in New Issue
Block a user