Skip to content

Commit

Permalink
preserve header var dtypes in params
Browse files Browse the repository at this point in the history
  • Loading branch information
ttricco committed Jul 17, 2024
1 parent 2ee9585 commit af9ddb9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sarracen/readers/read_phantom.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ def _read_global_header(fp, def_int_dtype, def_real_dtype):
new_keys, new_data = _read_global_header_block(fp, dtype)

keys += new_keys
data = np.append(data, new_data)
data = data + list(new_data)

keys = _rename_duplicates(keys)

Expand Down

0 comments on commit af9ddb9

Please sign in to comment.