Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Chris Markiewicz <[email protected]>
  • Loading branch information
celprov and effigies authored Sep 12, 2023
1 parent e983b30 commit dfa369f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mriqc/interfaces/functional.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ def _run_interface(self, runtime):

# FD
fd_data = np.loadtxt(self.inputs.in_fd, skiprows=1)
num_fd = np.float64((fd_data > self.inputs.fd_thres).sum())
num_fd = (fd_data > self.inputs.fd_thres).sum()
self._results["fd"] = {
"mean": float(fd_data.mean()),
"num": int(num_fd),
Expand Down

0 comments on commit dfa369f

Please sign in to comment.