Skip to content

Commit 939b46d

Browse files
committed
debug flag
1 parent bf01456 commit 939b46d

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

wikidataintegrator/sdc_core.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -598,6 +598,7 @@ def parse_wd_json(self, wd_json):
598598
self.statements = []
599599
for prop in wd_data['statements']:
600600
for z in wd_data['statements'][prop]:
601+
print(z['mainsnak']['datavalue']['type'])
601602
data_type = [x for x in WDBaseDataType.__subclasses__() if x.DTYPE == z['mainsnak']['datavalue']['type']][0]
602603
statement = data_type.from_json(z)
603604
self.statements.append(statement)

0 commit comments

Comments
 (0)