We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ceb4049 commit 8fbeba2Copy full SHA for 8fbeba2
nibabel/deprecated.py
@@ -20,10 +20,10 @@ class ModuleProxy(object):
20
21
::
22
arr = np.arange(24).reshape((2, 3, 4))
23
- minc = ModuleProxy('nibabel.minc')
24
- minc_image = minc.Minc1Image(arr, np.eye(4))
+ nifti1 = ModuleProxy('nibabel.nifti1')
+ nifti1_image = nifti1.Nifti1Image(arr, np.eye(4))
25
26
- So, the ``minc`` object is a proxy that will import the required module
+ So, the ``nifti1`` object is a proxy that will import the required module
27
when you do attribute access and return the attributes of the imported
28
module.
29
"""
0 commit comments