I currently type hint a function returning tuple as follows:
FuncOutput = Tuple[nib.Nifti1Image,
nib.Nifti1Image,
nib.Nifti1Image,
nib.Nifti1Image,
nib.Nifti1Image,
nib.Nifti1Image,
nib.Nifti1Image]
Is there a way to do this in a concise manner where I can specify the length without typing it so many times?