Skip to content

Commit

Permalink
Removing necessity of MTs being a list.
Browse files Browse the repository at this point in the history
  • Loading branch information
Eitan Weinstein committed Aug 5, 2024
1 parent faff3c9 commit 5378f83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/DataLib/fendl32B_retrofit/process_fendl3.2.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def main():
pendf_path.rename(TAPE21)

material_id, MTs, endftk_file_obj = tp.extract_endf_specs(TAPE20)
MTs = list(set(MTs).intersection(mt_dict.keys()))
MTs = set(MTs).intersection(mt_dict.keys())
njoy_input = groupr_tools.fill_input_template(material_id, MTs,
element, A, mt_dict)
groupr_tools.write_njoy_input_file(njoy_input)
Expand Down

0 comments on commit 5378f83

Please sign in to comment.