Skip to content

Commit

Permalink
Fix style
Browse files Browse the repository at this point in the history
  • Loading branch information
chaithyagr committed Jul 19, 2024
1 parent a9e26cf commit f9aaa04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mrinufft/io/siemens.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def read_siemens_rawdat(
"n_contrasts": int(twixObj.image.NSet),
"n_adc_samples": int(twixObj.image.NCol),
"n_slices": int(twixObj.image.NSli),
"n_average": int(twixObj.image.NAve)
"n_average": int(twixObj.image.NAve),
}
if slice_num is not None and hdr["n_slices"] < slice_num:
raise ValueError("The slice number is out of bounds.")
Expand Down

0 comments on commit f9aaa04

Please sign in to comment.