From 8d0eae7286bb52ec1deb1ec910c31349989ea2c4 Mon Sep 17 00:00:00 2001 From: Tom Close Date: Wed, 24 Apr 2024 14:38:43 +1000 Subject: [PATCH] renamed itk-supported to itk-all and added itk-image --- fileformats/medimage/__init__.py | 3 ++- fileformats/medimage/itk.py | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/fileformats/medimage/__init__.py b/fileformats/medimage/__init__.py index 8012aba..fef42fc 100644 --- a/fileformats/medimage/__init__.py +++ b/fileformats/medimage/__init__.py @@ -102,5 +102,6 @@ MetaImage, Nrrd, NrrdGz, - ItkSupported, + ItkImage, + ItkAll, ) diff --git a/fileformats/medimage/itk.py b/fileformats/medimage/itk.py index 793d381..cc1cadc 100644 --- a/fileformats/medimage/itk.py +++ b/fileformats/medimage/itk.py @@ -48,6 +48,6 @@ class NrrdGz(Gzip[Nrrd]): Nifti1, NiftiGz, Dicom, Bitmap, Tiff, Jpeg, GIPL, MetaImage, Nrrd, NrrdGz, PGM ] -ItkSupported = ty.Union[ +ItkAll = ty.Union[ Nifti1, NiftiGz, Dicom, Bitmap, Tiff, Jpeg, GIPL, MetaImage, Nrrd, NrrdGz, PGM, VTK ]