From a3f5c54174a81c788c9bba039c54d165037573ef Mon Sep 17 00:00:00 2001 From: Alex Nelson Date: Tue, 1 Oct 2024 11:27:59 -0400 Subject: [PATCH] Add return signature respective to argument pass-through Signed-off-by: Alex Nelson --- pyshacl/rdfutil/inoculate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyshacl/rdfutil/inoculate.py b/pyshacl/rdfutil/inoculate.py index 61bbf85..142d5af 100644 --- a/pyshacl/rdfutil/inoculate.py +++ b/pyshacl/rdfutil/inoculate.py @@ -17,7 +17,7 @@ OWLNamedIndividual = OWL.NamedIndividual -def inoculate(data_graph: rdflib.Graph, ontology: rdflib.Graph): +def inoculate(data_graph: rdflib.Graph, ontology: rdflib.Graph) -> rdflib.Graph: """ Copies all RDFS and OWL axioms (classes, relationship definitions, and properties) from the ontology graph into the data_graph.