Skip to content
This repository has been archived by the owner on Dec 20, 2024. It is now read-only.

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Ariel Rokem <[email protected]>
  • Loading branch information
oesteban and arokem committed Dec 15, 2022
1 parent e92fa4b commit 21eabec
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/eddymotion/data/pet.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def _data_repr(value):

@attr.s(slots=True)
class PET:
"""Data representation structure for dMRI data."""
"""Data representation structure for PET data."""

dataobj = attr.ib(default=None, repr=_data_repr)
"""A numpy ndarray object for the data array, without *b=0* volumes."""
Expand Down
2 changes: 1 addition & 1 deletion src/eddymotion/model/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ def __init__(self, timepoints=None, n_ctrl=None, mask=None, order=3, **kwargs):
self._t = np.arange(-3, float(self._n_ctrl) + 4, dtype="float32")

def fit(self, data, *args, **kwargs):
"""Do nothing."""
"""Fit the model."""
from scipy.interpolate import BSpline
from scipy.sparse.linalg import cg

Expand Down

0 comments on commit 21eabec

Please sign in to comment.