Skip to content

Commit

Permalink
fix bmag
Browse files Browse the repository at this point in the history
  • Loading branch information
josephmje committed Mar 11, 2021
1 parent 075c706 commit 4f931db
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dmriprep/interfaces/reports.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ def _generate_segment(self):
pe_direction = self.inputs.pe_direction
shell_dist = self.inputs.shell_dist
shell_dist_text = ", ".join(
f"{shell_dist[key]} directions at b={key} s/mm\u00B2"
f"{shell_dist[key]} directions at b={key} s/mm<sup>2</sup>"
for key in shell_dist
)

Expand Down
2 changes: 1 addition & 1 deletion dmriprep/interfaces/vectors.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class _CheckGradientTableInputSpec(BaseInterfaceInputSpec):
in_rasb = File(exists=True, xor=["in_bval", "in_bvec"])
b0_threshold = traits.Float(B0_THRESHOLD, usedefault=True)
bvec_norm_epsilon = traits.Float(BVEC_NORM_EPSILON, usedefault=True)
b_mag = traits.Int(None, usedefault=True)
b_mag = traits.Either(None, traits.Int, usedefault=True)
b_scale = traits.Bool(True, usedefault=True)


Expand Down

0 comments on commit 4f931db

Please sign in to comment.