Skip to content

Commit

Permalink
fixed a typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Hanke committed Feb 23, 2023
1 parent 3190034 commit bc74692
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion annotator.py
Original file line number Diff line number Diff line change
Expand Up @@ -564,7 +564,7 @@ def process_file(self, file_name, file_data, separator, header_separator, encodi
table_data.insert(2,'@id',table_data.index)
table_data['@id']='gid-'+table_data['@id'].astype(str)
table_data['url']=file_name+'#row='+table_data['url'].astype(str)
table_entrys=[{'url': record.pop('url'), 'rownum': record.pop('rownum'), 'discribes':record}
table_entrys=[{'url': record.pop('url'), 'rownum': record.pop('rownum'), 'describes':record}
for record in table_data.to_dict('records')]
metadata_csvw["row"] =table_entrys

Expand Down

0 comments on commit bc74692

Please sign in to comment.