Skip to content

Commit

Permalink
typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
andrawaag committed Sep 7, 2021
1 parent d334740 commit 3b04abf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wikidataintegrator/wdi_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -1334,7 +1334,7 @@ def check_entity_schema(self, eid=None, entity_schema_repo=None, output='confirm
entity_schema_repo = config["ENTITY_SCHEMA_REPO"] if entity_schema_repo is None else entity_schema_repo
schema = requests.get(entity_schema_repo+eid).text

for result in ShExEvaluator(rdf=rdfdata, schema=schema, focus=config["CONCEPT_BASE_URI"] + qid).evaluate():
for result in ShExEvaluator(rdf=rdfdata, schema=schema, focus=config["CONCEPT_BASE_URI"] + self.wd_item_id).evaluate():
shex_result = dict()
if result.result:
shex_result["result"] = True
Expand Down

0 comments on commit 3b04abf

Please sign in to comment.