Skip to content

Commit

Permalink
Pass schema name correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
IanCa committed Jun 7, 2024
1 parent fe7e3ff commit 635b376
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hed/scripts/convert_and_update_schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def convert_and_update(filenames, set_ids):
source_dataframes = schema.get_as_dataframes()

try:
result = update_dataframes_from_schema(source_dataframes, schema, assign_missing_ids=set_ids)
result = update_dataframes_from_schema(source_dataframes, schema, schema.library, assign_missing_ids=set_ids)
except HedFileError as e:
print(get_printable_issue_string(e.issues, title="Issues updating schema:"))
raise e
Expand Down

0 comments on commit 635b376

Please sign in to comment.