Skip to content

Commit 0775391

Browse files
committed
DOC: Increase consistency in dMRI model init docstring
Increase consistency in dMRI model init docstring: - Remove sentence ending period from slot dictionary values. - Do not use raw string marker where not necessary.
1 parent 676cd91 commit 0775391

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/nifreeze/model/dmri.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,12 +53,12 @@ class BaseDWIModel(BaseModel):
5353
"_data_mask": "A mask for the voxels that will be fitted and predicted",
5454
"_S0": "The S0 (b=0 reference signal) that will be fed into DIPY models",
5555
"_model_class": "Defining a model class, DIPY models are instantiated automagically",
56-
"_modelargs": "Arguments acceptable by the underlying DIPY-like model.",
56+
"_modelargs": "Arguments acceptable by the underlying DIPY-like model",
5757
"_models": "List with one or more (if parallel execution) model instances",
5858
}
5959

6060
def __init__(self, dataset: DWI, max_b: float | int | None = None, **kwargs):
61-
r"""Initialization.
61+
"""Initialization.
6262
6363
Parameters
6464
----------

0 commit comments

Comments
 (0)