Skip to content

Commit 6de05aa

Browse files
committed
chore: add missing imports
1 parent 46dac91 commit 6de05aa

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

junifer/configs/juseless/datagrabbers/__init__.pyi

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,12 @@ __all__ = [
44
"JuselessDataladIXIVBM",
55
"IXISite",
66
"JuselessUCLA",
7+
"UCLATask",
78
"JuselessDataladUKBVBM",
89
]
910

1011
from .aomic_id1000_vbm import JuselessDataladAOMICID1000VBM
1112
from .camcan_vbm import JuselessDataladCamCANVBM
1213
from .ixi_vbm import JuselessDataladIXIVBM, IXISite
13-
from .ucla import JuselessUCLA
14+
from .ucla import JuselessUCLA, UCLATask
1415
from .ukb_vbm import JuselessDataladUKBVBM

junifer/configs/juseless/datagrabbers/ixi_vbm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ class JuselessDataladIXIVBM(PatternDataladDataGrabber):
3838
That path where the datalad dataset will be cloned.
3939
If not specified, the datalad dataset will be cloned into a temporary
4040
directory.
41-
sites : list of :obj:`IXISite`, optional
41+
sites : list of :enum:`.IXISite`, optional
4242
IXI sites.
4343
By default, all available sites are selected.
4444

junifer/configs/juseless/datagrabbers/ucla.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
from ....typing import DataGrabberPatterns
1414

1515

16-
__all__ = ["JuselessUCLA"]
16+
__all__ = ["JuselessUCLA", "UCLATask"]
1717

1818

1919
class UCLATask(str, Enum):

junifer/testing/datagrabbers.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717

1818
__all__ = [
1919
"OasisVBMTestingDataGrabber",
20+
"PartlyCloudyAgeGroup",
2021
"PartlyCloudyTestingDataGrabber",
2122
"SPMAuditoryTestingDataGrabber",
2223
]
@@ -178,7 +179,7 @@ class PartlyCloudyTestingDataGrabber(BaseDataGrabber):
178179
purpose of having realistic examples. Depending on your research
179180
question, other confounds might be more appropriate.
180181
If False, returns all :term:`fMRIPrep` confounds (default True).
181-
age_group : `PartlyCloudyAgeGroup`, optional
182+
age_group : :enum:`.PartlyCloudyAgeGroup`, optional
182183
Age group to fetch (default PartlyCloudyAgeGroup.Both).
183184
184185
"""

0 commit comments

Comments
 (0)