Skip to content

Commit

Permalink
Merge pull request #284 from lsst/tickets/DM-26343
Browse files Browse the repository at this point in the history
DM-26343: Add .fz and .fit extensions to supported FITS list
  • Loading branch information
timj committed Aug 18, 2020
2 parents b33ccd1 + 03fbef2 commit 6805a3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/lsst/obs/base/formatters/fitsExposure.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ class FitsExposureFormatter(Formatter):
variance: *default
"""
supportedExtensions = frozenset({".fits", ".fits.gz", ".fits.fz"})
supportedExtensions = frozenset({".fits", ".fits.gz", ".fits.fz", ".fz", ".fit"})
extension = ".fits"
_metadata = None
supportedWriteParameters = frozenset({"recipe"})
Expand Down

0 comments on commit 6805a3c

Please sign in to comment.