From d04108abb74387a1af1aea9db62e4eac1298a722 Mon Sep 17 00:00:00 2001 From: Feiler Date: Tue, 28 Jul 2026 14:30:37 +0200 Subject: [PATCH] fix: correct resolve_iri typo to resolve_iris in WikiDataSparqlResolver --- src/oold/backend/sparql.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/oold/backend/sparql.py b/src/oold/backend/sparql.py index f17b520..ddff6c3 100644 --- a/src/oold/backend/sparql.py +++ b/src/oold/backend/sparql.py @@ -133,7 +133,7 @@ def __init__(self, **kwargs): self._sparql = SPARQLWrapper(self.endpoint) - def resolve_iri(self, iris: list[str]) -> dict[str, dict]: + def resolve_iris(self, iris: list[str]) -> dict[str, dict]: # sparql query to get a node by IRI with all its properties # using CONSTRUCT to get the full node # format the result as json-ld