Skip to content

Commit

Permalink
Fix return type for hdus
Browse files Browse the repository at this point in the history
  • Loading branch information
AbigaleMoen committed Jun 8, 2023
1 parent f394659 commit 1ac6417
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ccdproc/image_collection.py
Original file line number Diff line number Diff line change
Expand Up @@ -992,7 +992,7 @@ def hdus(self, do_not_scale_image_data=False, **kwd):
**kwd)
hdus.__doc__ = _generator.__doc__.format(
name='HDU', default_scaling='False',
return_type='astropy.io.fits.PrimaryHDU, astropy.io.fits.ImageHDU')
return_type="`, ` ".join(('astropy.io.fits.PrimaryHDU', 'astropy.io.fits.ImageHDU')))

def data(self, do_not_scale_image_data=False, **kwd):
return self._generator('data',
Expand Down

0 comments on commit 1ac6417

Please sign in to comment.