Skip to content

Commit

Permalink
Fix var name
Browse files Browse the repository at this point in the history
  • Loading branch information
yuanzhou committed Nov 28, 2023
1 parent d63b25a commit ab37ce0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/schema/schema_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -1863,7 +1863,7 @@ def get_assay_types():
# Due to the json envelop being used int the json result
assay_types_list = result_dict['result']
for assay_type_dict in assay_types_list:
assay_types_dict_by_name[assay_type_dict['name']] = assay_type_dict
assay_types_by_name[assay_type_dict['name']] = assay_type_dict

return assay_types_by_name
else:
Expand Down

0 comments on commit ab37ce0

Please sign in to comment.