diff --git a/giga_connectome/postprocess.py b/giga_connectome/postprocess.py index 68d87fe..2ae3d30 100644 --- a/giga_connectome/postprocess.py +++ b/giga_connectome/postprocess.py @@ -220,12 +220,12 @@ def _get_masker(atlas_path: Path) -> NiftiLabelsMasker | NiftiMapsMasker: atlas_masker = NiftiLabelsMasker( labels_img=atlas_path, standardize=False, - cmap="grey", + cmap="gray", ) elif atlas_type == "probseg": atlas_masker = NiftiMapsMasker( maps_img=atlas_path, standardize=False, - cmap="grey", + cmap="gray", ) return atlas_masker